From 93cfea15624674e5a452dba70c0a08057740866b Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Fri, 7 Jun 2024 18:28:08 +0100 Subject: [PATCH] ci: add workflow for build + publish APK on release --- .github/workflows/custom_release.yaml | 44 +++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/custom_release.yaml diff --git a/.github/workflows/custom_release.yaml b/.github/workflows/custom_release.yaml new file mode 100644 index 00000000000..5b7cc4fb6dc --- /dev/null +++ b/.github/workflows/custom_release.yaml @@ -0,0 +1,44 @@ +# Workflow to deploy custom builds on ODK Collect + +name: 🔧 Build and Release + +on: + release: + types: [published] + # Allow manual trigger (workflow_dispatch) + workflow_dispatch: + +jobs: + build_upload_apk: + runs-on: ubuntu-latest + permissions: + contents: write + + container: + image: docker.io/cimg/android:2024.01 + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Add Robolectric Deps + run: ./download-robolectric-deps.sh + + - name: Compile Code + run: ./gradlew assembleDebug + + - name: Install Github CLI + run: | + sudo apt update + sudo apt install --no-install-recommends -y gh + + - name: Build & Upload APK + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + ./gradlew assembleSelfSignedRelease + + apk_path=$(find ./collect_app/build/outputs/apk/selfSignedRelease -name '*.apk' -type f) + echo "Generated APK file: ${apk_path}" + + gh release upload ${{ github.event.release.tag_name }} "${apk_path}"