mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
CI: Ensure uploaded test artifacts have a unique name
Without this, if two CI runs on Linux both fail and want to upload screenshots, we get an error like this on the second: > Error: Failed to CreateArtifact: Received non-retryable error: Failed > request: (409) Conflict: an artifact with this name already exists on > the workflow run Using all the inputs as part of the name should make this kind of conflict impossible.
This commit is contained in:
2
.github/workflows/lagom-template.yml
vendored
2
.github/workflows/lagom-template.yml
vendored
@@ -190,7 +190,7 @@ jobs:
|
||||
if: ${{ always() && inputs.fuzzer == 'NO_FUZZ' }}
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: libweb-test-artifacts-${{ inputs.os_name }}
|
||||
name: libweb-test-artifacts-${{ inputs.os_name }}-${{inputs.fuzzer}}-${{inputs.toolchain}}-${{inputs.clang-plugins}}
|
||||
path: ${{ github.workspace }}/Build/UI/Headless/test-dumps
|
||||
retention-days: 7
|
||||
if-no-files-found: ignore
|
||||
|
||||
Reference in New Issue
Block a user