[Feat]: i18n 模块 #297
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: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew :app:assembleRelease -PHeadSha=${{github.sha}} | |
- name: Upload APK [arm64-v8a] | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-arm64-v8a-release.apk | |
path: app/build/outputs/apk/release/app-arm64-v8a-release.apk | |
- name: Upload APK [armeabi-v7a] | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-armeabi-v7a-release.apk | |
path: app/build/outputs/apk/release/app-armeabi-v7a-release.apk | |
- name: Upload APK [x86] | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-x86-release.apk | |
path: app/build/outputs/apk/release/app-x86-release.apk | |
- name: Upload APK [x86_64] | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-x86_64-release.apk | |
path: app/build/outputs/apk/release/app-x86_64-release.apk | |
- name: Upload APK [universal] | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-universal-release.apk | |
path: app/build/outputs/apk/release/app-universal-release.apk | |