Skip to content

Commit

Permalink
Use unique artifact name to upload logs on CI failure (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass authored Jan 6, 2025
1 parent ee8a1f3 commit 3b17494
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@ jobs:
with:
name: test-results-${{ matrix.env.NAME }}
path: ${{ env.BASEDIR }}/target_ws/**/test_results/**/*.xml
overwrite: true
- name: Upload log artifacts (on failure)
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-results-${{ matrix.env.NAME }}
name: logs-${{ matrix.env.NAME }}
path: ${{ env.BASEDIR }}/target_ws/log/*
overwrite: true

0 comments on commit 3b17494

Please sign in to comment.