Skip to content

Commit 3b17494

Browse files
authored
Use unique artifact name to upload logs on CI failure (#230)
1 parent ee8a1f3 commit 3b17494

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,11 @@ jobs:
4747
with:
4848
name: test-results-${{ matrix.env.NAME }}
4949
path: ${{ env.BASEDIR }}/target_ws/**/test_results/**/*.xml
50+
overwrite: true
5051
- name: Upload log artifacts (on failure)
5152
uses: actions/upload-artifact@v4
5253
if: failure()
5354
with:
54-
name: test-results-${{ matrix.env.NAME }}
55+
name: logs-${{ matrix.env.NAME }}
5556
path: ${{ env.BASEDIR }}/target_ws/log/*
57+
overwrite: true

0 commit comments

Comments
 (0)