Android Build Release APK #25
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: Android Build Release APK | |
on: | |
push: | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Decode Keystore File | |
uses: timheuer/base64-to-file@v1 | |
id: android_keystore | |
with: | |
fileName: "android_keystore.keystore" | |
encodedString: ${{secrets.KEYSTORE_FILE}} | |
- name: Accept Android SDK license | |
run: echo "y" | /usr/local/lib/android/sdk/cmdline-tools/latest/bin/sdkmanager "build-tools;34.0.0" | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: adopt | |
- name: Build Android release | |
run: fastlane release | |
env: | |
KEYSTORE_FILE: ${{steps.android_keystore.outputs.filePath}} | |
KEYSTORE_PASSWORD: ${{secrets.KEYSTORE_PASSWORD}} | |
KEY_ALIAS: ${{secrets.KEY_ALIAS}} | |
KEY_PASSWORD: ${{secrets.KEY_PASSWORD}} | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: assets | |
path: ${{github.workspace}}/app/build/outputs/apk/release/*.apk |