Skip to content

Commit

Permalink
ci: make artifact name unique in linux integration
Browse files Browse the repository at this point in the history
actions/upload-artifact@v4 marks artifacts as immutable. Thus, tests
which use matrix should have a unique artifact name while using
upload-artifact github action

Ref: https://github.com/actions/upload-artifact/releases/tag/v4.0.0
Signed-off-by: Akhil Mohan <[email protected]>
  • Loading branch information
akhilerm committed Jan 16, 2024
1 parent f1e6cc3 commit 20619a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ jobs:
- uses: actions/upload-artifact@v3
if: always()
with:
name: TestResults ${{ matrix.runtime }} ${{matrix.runc}}
name: TestResults ${{ matrix.runtime }} ${{matrix.runc}} ${{ matrix.os }}
path: |
*-junit.xml
*-gotest.json
Expand Down

0 comments on commit 20619a7

Please sign in to comment.