From 54e613d079f73586bdb34e0ddbcebf7ab487247b Mon Sep 17 00:00:00 2001 From: Peter Balogh Date: Wed, 22 Jul 2026 11:48:27 +0200 Subject: [PATCH] ci: set 1-day retention for intermediate image artifacts The per-arch docker image tarballs uploaded by the build-image job are only consumed by the push-manifest job within the same run. Without an explicit retention-days they fall back to the default (up to 90 days), needlessly retaining large image tarballs. Set retention-days: 1. Signed-off-by: Peter Balogh --- .github/workflows/docker.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 76329a5..c484611 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -73,6 +73,7 @@ jobs: with: name: image-${{ steps.setup-docker-arch.outputs.DOCKER_ARCH }} path: image-${{ steps.setup-docker-arch.outputs.DOCKER_ARCH }}.tar + retention-days: 1 push-manifest: needs: build-image