[Fix] 오프라인 진입 제어 + 로그인 프로세스 수정 (#217) #108
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 |