Skip to content

Commit b0afe1f

Browse files
chore: Fix conflict when uploading test results in CI (#4123)
When verify tests fail on multiple runners in CI, they all try to upload the test results using the same artifact ID, which leads to an error in CI (hiding the actual reason the job failed for any but the first failure encountered).
1 parent 7386f11 commit b0afe1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
if: failure()
131131
uses: actions/upload-artifact@v4
132132
with:
133-
name: verify-test-results
133+
name: ${{ runner.os }}-verify-test-results
134134
path: "**/*.received.*"
135135

136136
# To save time and disk space, we only create and archive the Nuget packages when we're actually releasing.

0 commit comments

Comments
 (0)