feat: ./gradlew assembleDebug appDistributionUploadDebug 로 테스트 #23
Workflow file for this run
This file contains 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] Deploy Firebase App Distribution" | ||
on: | ||
push: | ||
branches: | ||
- feature/cat-101 | ||
workflow_dispatch: | ||
env: | ||
Check failure on line 8 in .github/workflows/deploy_to_firebase_app_distribution.yml GitHub Actions / [CD] Deploy Firebase App DistributionInvalid workflow file
|
||
jobs: | ||
firebase-app-distribution: | ||
environment: Debug | ||
name: Firebase App Distribution | ||
runs-on: self-hosted | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Development Environment | ||
uses: ./.github/actions/setup-development-environment | ||
with: | ||
google-services: ${{ secrets.GOOGLE_SERVICES }} | ||
- name: Create Firebase Credentials | ||
run: | | ||
echo -n "${{ secrets.FIREBASE_CREDENTIALS }}" | base64 --decode > firebase_credentials.json | ||
- name: Build and Upload App to Firebase App Distribution | ||
run: ./gradlew assembleDebug appDistributionUploadDebug \ | ||
-PfirebaseServiceCredentials=./firebase_credentials.json \ | ||
-PfirebaseAppId=${{ secrets.FIREBASE_APP_ID }} \ | ||
-PfirebaseDistributionGroups=뽀모냥 |