Skip to content

Commit

Permalink
[TASK] Use unique names for artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
derhansen committed Dec 14, 2024
1 parent 5146a63 commit 9d03d56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/AcceptanceTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,19 +92,19 @@ jobs:
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: codeception-results
name: codeception-results-${{ matrix.env.php }}
path: Tests/Acceptance/_output/

- name: Upload PHP log
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: php-log
name: php-log-${{ matrix.env.php }}
path: php.log.txt

- name: Upload TYPO3 log
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: typo3-log
name: typo3-log-${{ matrix.env.php }}
path: .Build/var/log/

0 comments on commit 9d03d56

Please sign in to comment.