From 96ebbf805d2cb3bb4089a5a0dc70114e3c16cc1b Mon Sep 17 00:00:00 2001 From: Josh Jacobs Date: Sun, 26 Oct 2025 15:19:15 +0000 Subject: [PATCH] fix(workflow): update artifact naming and handling in docker-build.yml - Changed artifact name to include architecture in upload step. - Updated download step to use a pattern for artifact names and enabled merging of multiple artifacts. --- .github/workflows/docker-build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index d287564..849e855 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -72,10 +72,11 @@ jobs: - name: Upload digest uses: actions/upload-artifact@v5 with: - name: digests + name: digests-${{ matrix.arch }} path: /tmp/digests/* if-no-files-found: error retention-days: 1 + overwrite: true MergeRefs: name: Do The Horrible Merge Thing @@ -87,8 +88,9 @@ jobs: - name: Download digests uses: actions/download-artifact@v6 with: - name: digests + pattern: digests-* path: /tmp/digests + merge-multiple: true - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3