From c4d22f3b0ef31f76282838dea4bf5ab904dc5cc7 Mon Sep 17 00:00:00 2001 From: Adrien Guillo Date: Mon, 18 Dec 2023 12:16:20 +0100 Subject: [PATCH] Add platform to digest name --- .github/workflows/publish_docker_images.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_docker_images.yml b/.github/workflows/publish_docker_images.yml index a0f656938ab..d2363bfda2e 100644 --- a/.github/workflows/publish_docker_images.yml +++ b/.github/workflows/publish_docker_images.yml @@ -83,7 +83,7 @@ jobs: - name: Upload digest uses: actions/upload-artifact@v4 with: - name: digest-${{ env.BUILD_ID }} + name: digest-${{ env.BUILD_ID }}-${{ matrix.platform }} path: /tmp/digests/* if-no-files-found: error retention-days: 1 @@ -95,7 +95,7 @@ jobs: - name: Download digests uses: actions/download-artifact@v4 with: - name: digest-${{ env.BUILD_ID }} + name: digest-${{ env.BUILD_ID }}-${{ matrix.platform }} path: /tmp/digests - name: Set up Docker Buildx