From 888dcf5283b92eb6feb1ff35451f357359daab74 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 12 Apr 2026 18:29:40 +0000 Subject: Fix Actions storage: set artifact retention-days MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/android.yml | 2 ++ 1 file changed, 2 insertions(+) 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 -- cgit v1.2.3