Merge pull request #2 from xihan123/release-please--branches--master-… #2
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 CI | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build: | |
name: Build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest ] | |
steps: | |
- name: Check Commit Message [skip CI] | |
env: | |
COMMIT_FILTER: "[skip ci]" | |
if: contains(github.event.head_commit.message, '[skip ci]') | |
run: | | |
echo "no 'skip ci' in commit message" | |
exit 2 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
- name: base64-to-file | |
id: write_file | |
uses: timheuer/[email protected] | |
if: ${{ ( github.event_name != 'pull_request' && github.ref == 'refs/heads/master' ) || github.ref_type == 'tag' }} | |
with: | |
fileName: 'key.jks' | |
encodedString: ${{ secrets.SIGNING_KEY }} | |
- name: Write key | |
if: ${{ ( github.event_name != 'pull_request' && github.ref == 'refs/heads/master' ) || github.ref_type == 'tag' }} | |
run: | | |
touch keystore.properties | |
echo storePassword='${{ secrets.KEY_STORE_PASSWORD }}' >> keystore.properties | |
echo keyAlias='${{ secrets.ALIAS }}' >> keystore.properties | |
echo keyPassword='${{ secrets.KEY_PASSWORD }}' >> keystore.properties | |
echo storeFile='${{ steps.write_file.outputs.filePath }}' >> keystore.properties | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Build with Gradle | |
run: | | |
[ $(du -s ~/.gradle/wrapper | awk '{ print $1 }') -gt 250000 ] && rm -rf ~/.gradle/wrapper/* || true | |
chmod +x gradlew | |
./gradlew :app:synthesizeDistReleaseApksCI | |
echo "APK_FILE_ARM32=$(find app/build/outputs/ci -name '*arm32.apk')" >> $GITHUB_ENV | |
echo "APK_FILE_ARM64=$(find app/build/outputs/ci -name '*arm64.apk')" >> $GITHUB_ENV | |
echo "APK_FILE_ARMALL=$(find app/build/outputs/ci -name '*armAll.apk')" >> $GITHUB_ENV | |
echo "APK_FILE_UNIVERSAL=$(find app/build/outputs/ci -name '*universal.apk')" >> $GITHUB_ENV | |
- name: Upload assets to a Release | |
uses: meeDamian/[email protected] | |
with: | |
files: app/build/outputs/ci/*.apk | |
token: ${{ secrets.RELEASE_TOKEN }} | |
allow_override: true | |
gzip: false |