diff options
| author | Claude <noreply@anthropic.com> | 2026-04-12 18:29:40 +0000 |
|---|---|---|
| committer | Claude <noreply@anthropic.com> | 2026-04-12 18:29:40 +0000 |
| commit | 888dcf5283b92eb6feb1ff35451f357359daab74 (patch) | |
| tree | 6d74ffe58dc0ac98b7ad31ccffe6e5402a9d59bb /.github/workflows/android.yml | |
| parent | acb1d24e7b4a4c5c01c8fe5a50d702cbbaed2d5d (diff) | |
Fix Actions storage: set artifact retention-days
test-apks: 1 day — only needed for the smoke-test job in the same run
smoke-test-results: 7 days — enough for post-failure debugging
Default is 90 days; at ~30 MB per run this was filling the 500 MB
free-tier limit in ~2 weeks.
https://claude.ai/code/session_01HXPjBsogsJVRwCiekDGkJX
Diffstat (limited to '.github/workflows/android.yml')
| -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 2c28410..33f7912 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 |
