From 76cd75dfaa2dde563e5623940d66e19c9b6fa249 Mon Sep 17 00:00:00 2001 From: Darren Rolf Date: Sat, 21 Feb 2026 15:03:27 -0600 Subject: [PATCH 1/2] Add GitHub Actions workflow for building APK --- : .github/workflows/android.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..13abfda5 --- /dev/null +++ b/: .github/workflows/android.yml @@ -0,0 +1,26 @@ +name: Build & Publish Release APK + +on: + push: + tags: + - '*' + +jobs: + Gradle: + runs-on: ubuntu-latest + steps: + - name: checkout code + uses: actions/checkout@v2 + - name: setup jdk + uses: actions/setup-java@v1 + with: + java-version: 11 + - name: Make Gradle executable + run: chmod +x ./gradlew + - name: Build Release APK + run: ./gradlew assembleRelease + - name: Releasing using Hub + uses: sangatdesai/release-apk@main + env: + GITHUB_TOKEN: ${{ secrets.TOKEN }} + APP_FOLDER: app From e58ac32b4495064dbbfc767cd43b371bba5c8837 Mon Sep 17 00:00:00 2001 From: Darren Rolf Date: Sat, 21 Feb 2026 15:14:52 -0600 Subject: [PATCH 2/2] Add GitHub Actions workflow for building APK --- .../workflows/: .github/workflows/androd.yml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 : .github/workflows/: .github/workflows/androd.yml diff --git a/: .github/workflows/: .github/workflows/androd.yml b/: .github/workflows/: .github/workflows/androd.yml new file mode 100644 index 00000000..13abfda5 --- /dev/null +++ b/: .github/workflows/: .github/workflows/androd.yml @@ -0,0 +1,26 @@ +name: Build & Publish Release APK + +on: + push: + tags: + - '*' + +jobs: + Gradle: + runs-on: ubuntu-latest + steps: + - name: checkout code + uses: actions/checkout@v2 + - name: setup jdk + uses: actions/setup-java@v1 + with: + java-version: 11 + - name: Make Gradle executable + run: chmod +x ./gradlew + - name: Build Release APK + run: ./gradlew assembleRelease + - name: Releasing using Hub + uses: sangatdesai/release-apk@main + env: + GITHUB_TOKEN: ${{ secrets.TOKEN }} + APP_FOLDER: app