From 25b7c194ad36f1ca36953c966cade6ad16e0382b Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 23:22:30 +0000 Subject: [PATCH] feat: Add GitHub workflow to build debug APK This workflow allows for the manual creation of a debug APK. It can be triggered from the Actions tab in the GitHub repository. The workflow builds the debug APK and uploads it as a build artifact named 'app-debug', which can then be downloaded by users. --- .github/workflows/build-debug-apk.yml | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/build-debug-apk.yml diff --git a/.github/workflows/build-debug-apk.yml b/.github/workflows/build-debug-apk.yml new file mode 100644 index 00000000000..d6ae30b702d --- /dev/null +++ b/.github/workflows/build-debug-apk.yml @@ -0,0 +1,28 @@ +name: "Build debug APK" + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '21' + cache: 'gradle' + + - name: "Set up Android SDK" + uses: android-actions/setup-android@v3 + + - name: "Build debug APK" + run: ./gradlew assembleDebug --stacktrace + + - name: "Upload APK" + uses: actions/upload-artifact@v4 + with: + name: app-debug + path: app/build/outputs/apk/debug/app-debug.apk