[#6] Fix syntax #18
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: Deploy production app to Firebase App Distribution | |
on: | |
push: | |
branches: | |
- main | |
- feature/6-set-up-cd-android | |
jobs: | |
deploy_android: | |
name: Deploy Android app to Firebase App Distribution | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
environment: production | |
defaults: | |
run: | |
working-directory: ./sample | |
steps: | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- name: Cache Gradle | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches/modules-* | |
~/.gradle/caches/jars-* | |
~/.gradle/caches/build-cache-* | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Decode singing properties | |
run: echo "${{ secrets.ANDROID_SIGNING_PROPERTIES }}" | base64 --decode > signing.properties | |
- name: Decode release keystore | |
run: echo "${{ secrets.ANDROID_RELEASE_KEYSTORE }}" | base64 --decode > config/release.keystore | |
- name: Decode buildKonfig properties | |
run: echo "${{ secrets.BUILD_KONFIG_PROPERTIES }}" | base64 --decode > buildKonfig.properties | |
- name: Build production APK | |
run: ./gradlew assembleProductionRelease -PversionCode=$GITHUB_RUN_NUMBER | |
- name: Deploy production to Firebase | |
uses: wzieba/[email protected] | |
with: | |
appId: ${{env.ANDROID_FIREBASE_APP_ID}} | |
serviceCredentialsFileContent: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_CREDENTIAL_FILE_CONTENT }} | |
groups: nimble | |
file: sample/android/build/outputs/apk/production/release/android-production-release.apk |