✨ chore(README): update build status badge and add Google Pl… #72
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/[email protected] | |
- name: Set up JDK environment(JDK 11) | |
uses: actions/[email protected] | |
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 |