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).
This commit is contained in:
Pier-Jean Malandrino 2026-04-10 09:58:33 +02:00
parent ce6661ddcf
commit 19fa3e31a8

View file

@ -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: