From 481e28fffb0861a0e82f59ee04743075a3c66d12 Mon Sep 17 00:00:00 2001 From: Yae Sakura _ <87939280+YaeSakuraQvQ@users.noreply.github.com> Date: Sun, 24 Dec 2023 21:49:57 +0800 Subject: [PATCH] Create android.yml --- .github/workflows/android.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/android.yml diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 00000000..3e5f5c9a --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,32 @@ +name: Android CI + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3.3.0 + + - name: Setup JDK 19 + uses: actions/setup-java@v3.10.0 + with: + java-version: '19' + distribution: 'adopt' + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + + - name: Build with Gradle + run: bash ./gradlew -PappVerName=${{ env.VERSION }} assembleRelease + + - name: Upload APK + uses: actions/upload-artifact@v3.1.2 + with: + name: app-release + path: app/build/outputs/apk/release/