🚀 chore(android_ci): Update JDK version to 17 and fix capitali… #73
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: Build & upload to Firebase App Distribution | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
build: | |
name: Build Travelling Pro Android mobile app | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2.3.3 | |
- name: Set up JDK environment (JDK 17) | |
uses: actions/setup-java@v1.4.3 | |
with: | |
java-version: 17 | |
- name: Generate Release APK | |
run: ./gradlew assembleRelease | |
- name: Upload artifact to Firebase App Distribution | |
uses: wzieba/Firebase-Distribution-Github-Action@v1 | |
with: | |
appId: ${{ secrets.FIREBASE_ANDROID_APPID }} | |
token: ${{ secrets.FIREBASE_TOKEN }} | |
groups: testers | |
releaseNotes: "Travelling Pro App Build" | |
file: presentation/build/outputs/apk/release/presentation-release.apk | |
serviceCredentialsFile: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} |