From 19fa3e31a86cbc4f618243363b14b8cb39f946ed Mon Sep 17 00:00:00 2001 From: Pier-Jean Malandrino Date: Fri, 10 Apr 2026 09:58:33 +0200 Subject: [PATCH] fix(ci): download only required artifacts in release summary The Release summary job was downloading ALL artifacts (~780 MB) including Docker images it never uses. The 648 MB docker-image-local consistently timed out after 5 retries. Now downloads only the 4 small artifacts actually needed (~2 KB total). --- .github/workflows/release-gate.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-gate.yml b/.github/workflows/release-gate.yml index f5b0944..1fd05a5 100644 --- a/.github/workflows/release-gate.yml +++ b/.github/workflows/release-gate.yml @@ -635,11 +635,18 @@ jobs: steps: - uses: actions/checkout@v4.3.1 - - name: Download all artifacts + - name: Download image-size artifacts uses: actions/download-artifact@v4.3.0 with: + pattern: image-size-* path: /tmp/artifacts + - name: Download audit-checks artifact + uses: actions/download-artifact@v4.3.0 + with: + name: audit-checks-results + path: /tmp/artifacts/audit-checks-results + - name: Build summary comment id: summary env: