From 95fa5a57cd73d5a17d99b105663ce35f44f1326f Mon Sep 17 00:00:00 2001 From: Quentin Kaiser Date: Mon, 29 Jan 2024 14:21:13 +0100 Subject: [PATCH] fix(ci): use unique artifacts names. Not specifying a unique name for the artifact file would lead to the following error: Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run Fixed by specifying an artifact name that depends on the platform its been built for. --- .github/workflows/build-publish-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-publish-image.yml b/.github/workflows/build-publish-image.yml index bf9a623f3c..d8d277402c 100644 --- a/.github/workflows/build-publish-image.yml +++ b/.github/workflows/build-publish-image.yml @@ -94,7 +94,7 @@ jobs: - name: Upload digest uses: actions/upload-artifact@v4 with: - name: digests + name: ${{ matrix.platform }}-digests path: /tmp/digests/* if-no-files-found: error retention-days: 1