From c584dd6324e9001a075d95e7e472679e1d8efbf0 Mon Sep 17 00:00:00 2001 From: Josh Shippam Date: Thu, 22 Jan 2026 04:57:55 +0000 Subject: [PATCH] Create Debug Workflow --- .github/workflows/android.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 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 0000000..7cab280 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,28 @@ +name: Android CI + +on: + workflow_dispatch: + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: set up JDK 21 + uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + cache: gradle + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build + + - name: Upload a Debug APK + uses: actions/upload-artifact@v6.0.0 + with: + path: app/build/outputs/apk/debug/*.apk