From d26f4048d2f6bae92bcfd385a0e708b5239fca1e Mon Sep 17 00:00:00 2001 From: Pierre-Yves Nicolas <6371790+pynicolas@users.noreply.github.com> Date: Mon, 2 Mar 2026 21:06:44 +0100 Subject: [PATCH] GitHub action: upload APKs for PRs (#123) --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79925d8..5128f61 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,3 +32,12 @@ jobs: - name: Run Gradle run: ./gradlew clean license check assembleRelease --no-daemon + + - name: Upload APKs + if: github.event_name == 'pull_request' + uses: actions/upload-artifact@v4 + with: + name: FairScan-APKs-PR-${{ github.event.pull_request.number }} + path: | + app/build/outputs/apk/release/*.apk + retention-days: 30