Skip to content

Commit

Permalink
Make artifact names unique per step
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaBehrens committed Oct 24, 2024
1 parent e76671d commit 20e36be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
if: failure()
uses: actions/upload-artifact@v4
with:
name: phpt-test-results
name: phpt-test-results-on-${{ runner.os }}-${{ matrix.v8-versions }}-${{ matrix.php-versions }}
path: |
php_test_results*.txt
tests/*.out
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
if: failure()
uses: actions/upload-artifact@v4
with:
name: phpt-test-results
name: phpt-test-results-on-alpine
path: |
php_test_results*.txt
tests/*.out
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
if: failure()
uses: actions/upload-artifact@v4
with:
name: phpt-test-results
name: phpt-test-results-on-macos-brew
path: |
php_test_results*.txt
tests/*.out

0 comments on commit 20e36be

Please sign in to comment.