chore: change ui test ci #5
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 release APK & upload to Firebase App Distribution | |
on: | |
push: | |
branches: | |
- 'develop' | |
jobs: | |
build-release-apk-and-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'zulu' | |
- name: Bump APK version | |
uses: chkfung/[email protected] | |
with: | |
gradlePath: app/build.gradle.kts | |
versionCode: ${{ github.run_number }} | |
- name: Cache Gradle | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Set up Android SDK | |
uses: android-actions/setup-android@v2 | |
- name: Generate keystore | |
run: | | |
echo "$KEYSTORE" > keystore/keystore.b64 | |
base64 -d -i keystore/keystore.b64 > keystore/uliga_keystore | |
env: | |
KEYSTORE: ${{ secrets.APP_KEYSTORE_BASE64 }} | |
- name: Build release APK | |
run: ./gradlew assembleRelease |