update Chinese translation #549
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Decode Keystore | |
env: | |
KEYSTORE: ${{ secrets.KEYSTORE }} | |
run: echo $KEYSTORE | base64 --decode > ./app/ci.ks | |
- name: Decode Properties | |
env: | |
PROPERTIES: ${{ secrets.PROPERTIES }} | |
run: echo $PROPERTIES | base64 --decode > local.properties | |
- name: Build with Gradle | |
env: | |
BUILD_TAG: ".ci" | |
BUILD_NUMBER: ${{ github.run_number }} | |
run: ./gradlew build | |
- name: Get current branch name | |
run: echo "BRANCH=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV | |
- name: Create Release | |
uses: softprops/action-gh-release@v2 | |
if: github.ref == 'refs/heads/3.x' | |
with: | |
tag_name: 0.0.${{ github.run_number }}-ci | |
name: CI-Release-${{ env.BRANCH }}-${{ github.run_number }} | |
files: ./app/build/outputs/apk/release/com.apkupdater.ci-release.apk | |
body: ${{ github.event.head_commit.message }} | |
prerelease: true |