Skip to content

Commit

Permalink
Made the artifact name unique within the workflow run.
Browse files Browse the repository at this point in the history
  • Loading branch information
hchen99 committed Jan 7, 2025
1 parent e806fea commit c4eecc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/trickops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: doctests
name: doctests_${{ github.run_id }}_${{ github.job }}
path: |
share/trick/trickops/tests/*_doctest_log.txt
/tmp/log.*
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: doctests
name: doctests_${{ github.run_id }}_${{ github.job }}
path: |
share/trick/trickops/tests/*_doctest_log.txt
/tmp/log.*
Expand Down

0 comments on commit c4eecc3

Please sign in to comment.