GitHub action: upload APKs for PRs (#123)

This commit is contained in:
Pierre-Yves Nicolas
2026-03-02 21:06:44 +01:00
committed by GitHub
parent ee7c301f08
commit d26f4048d2

View File

@@ -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