Merge remote-tracking branch 'origin/master' into dev #76
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 17) | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'temurin' # Eclipse Temurin https://adoptium.net/ | |
- 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 |