Skip to content

Commit 95fa5a5

Browse files
committed
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.
1 parent 2853355 commit 95fa5a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-publish-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
- name: Upload digest
9595
uses: actions/upload-artifact@v4
9696
with:
97-
name: digests
97+
name: ${{ matrix.platform }}-digests
9898
path: /tmp/digests/*
9999
if-no-files-found: error
100100
retention-days: 1

0 commit comments

Comments
 (0)