[FIX] 백스택 이동 시 바텀 메뉴 반영 안되는 이슈 수정 (#215) #106
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "[CD] Release to Firebase Distribution" | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| jobs: | |
| deploy_release: | |
| environment: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Development Environment | |
| uses: ./.github/actions/setup-development-environment | |
| with: | |
| google-services: ${{ secrets.GOOGLE_SERVICES }} | |
| test-mode: release | |
| release-properties: ${{ secrets.RELEASE_PROPERTIES }} | |
| - name: Setup Signed Key Environment | |
| uses: ./.github/actions/setup-key-environment | |
| with: | |
| key-properties: ${{ secrets.KEY_PROPERTIES }} | |
| key-file: ${{ secrets.SIGNED_KEY }} | |
| - name: Build Release APK | |
| run: ./gradlew :app:assembleRelease | |
| - name: Check if APK exists | |
| run: ls -la app/build/outputs/apk/release/ | |
| - name: Upload to Firebase App Distribution | |
| uses: wzieba/Firebase-Distribution-Github-Action@v1 | |
| with: | |
| appId: ${{secrets.FIREBASE_APP_ID}} | |
| serviceCredentialsFileContent: ${{ secrets.FIREBASE_CREDENTIALS }} | |
| groups: 뽀모냥 | |
| file: app/build/outputs/apk/release/app-release.apk |