diff options
| author | Claude <noreply@anthropic.com> | 2026-04-23 07:03:12 +0000 |
|---|---|---|
| committer | Claude <noreply@anthropic.com> | 2026-04-23 07:03:12 +0000 |
| commit | 2d65054451bd19bddf357fecc91ba0764a209d68 (patch) | |
| tree | 771efc65c76bc35076498965d86fd2884a8a4231 /.github/workflows | |
| parent | 55d620db3a28de37c864ce760c88c77cfc8d224b (diff) | |
fix(ci): add retention-days to artifact uploads to prevent quota exhaustion
APKs accumulate across runs with no expiry; 1-day retention for the
intermediate test-apks handoff, 7 days for smoke-test results.
https://claude.ai/code/session_011h2dXbgXg3PesQMmQUNTCW
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/android.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 6dd744d..bc6d56c 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -31,6 +31,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: test-apks + retention-days: 1 path: | android-app/app/build/outputs/apk/debug/app-debug.apk android-app/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk @@ -112,6 +113,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: smoke-test-results + retention-days: 7 path: android-app/app/build/outputs/androidTest-results/ - name: Notify claudomator |
