From 31fa4f119798a60179aaf5160f9bea43bd614cf8 Mon Sep 17 00:00:00 2001 From: Alex Gorevski Date: Tue, 17 Feb 2026 10:30:34 -0800 Subject: [PATCH] fix(ci): add retention policy to release build artifacts (#585) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The upload-artifact step in the release workflow had no retention-days set, causing intermediate build artifacts to persist at the repository default of 90 days and consuming storage unnecessarily. Add retention-days: 7 since these are intermediate artifacts consumed by the publish job in the same workflow run — they do not need long-term retention. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7b14219..64446f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,6 +71,7 @@ jobs: with: name: zeroclaw-${{ matrix.target }} path: zeroclaw-${{ matrix.target }}.* + retention-days: 7 publish: name: Publish Release