From bbb4dea0bd41667bf5d59f80dbc043127bc3b07e Mon Sep 17 00:00:00 2001 From: Livio Spring Date: Thu, 14 Mar 2024 12:10:53 +0100 Subject: [PATCH] chore: fix artifact upload for container build (#7565) --- .github/workflows/container.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 5361d2f6b6..5e22a67413 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -118,7 +118,7 @@ jobs: name: Upload digest uses: actions/upload-artifact@v4 with: - name: digests + name: digests-${{ matrix.arch }} path: /tmp/digests if-no-files-found: error retention-days: 1 @@ -141,8 +141,9 @@ jobs: name: Download digests uses: actions/download-artifact@v4 with: - name: digests + pattern: digests-* path: /tmp/digests + merge-multiple: true - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3