refactor: enhance artifact naming in release workflows to include job and run attempt

This commit is contained in:
Simon Larsen
2025-10-03 13:51:52 +01:00
parent a307a68ec1
commit 1bc96d04fa
2 changed files with 4 additions and 4 deletions

View File

@@ -2058,7 +2058,7 @@ jobs:
with:
# Name of the artifact to upload.
# Optional. Default is 'artifact'
name: test-results
name: test-results-${{ github.job }}-${{ github.run_attempt }}
# A file, directory or wildcard pattern that describes what to upload
# Required.
@@ -2120,7 +2120,7 @@ jobs:
with:
# Name of the artifact to upload.
# Optional. Default is 'artifact'
name: test-results
name: test-results-${{ github.job }}-${{ github.run_attempt }}
# A file, directory or wildcard pattern that describes what to upload
# Required.

View File

@@ -2007,7 +2007,7 @@ jobs:
with:
# Name of the artifact to upload.
# Optional. Default is 'artifact'
name: test-results
name: test-results-${{ github.job }}-${{ github.run_attempt }}
# A file, directory or wildcard pattern that describes what to upload
# Required.
@@ -2064,7 +2064,7 @@ jobs:
with:
# Name of the artifact to upload.
# Optional. Default is 'artifact'
name: test-results
name: test-results-${{ github.job }}-${{ github.run_attempt }}
# A file, directory or wildcard pattern that describes what to upload
# Required.