Skip to content

Commit

Permalink
Change parameters to fix artifact name conflict issues
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoAdonis committed Sep 24, 2024
1 parent e32289f commit bd6383b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: actions/upload-artifact@v4
if: always()
with:
name: logs
name: logs-${{ matrix.configuration }}-${{ matrix.platform }}
path: _logs

report:
Expand All @@ -62,8 +62,9 @@ jobs:
- name: Retrieve overview reports
uses: actions/download-artifact@v4
with:
name: logs
path: _logs
pattern: logs-*
merge-multiple: true

- name: Join and generate global reports
run: .\.github\scripts\Join-CsvReports.ps1
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: actions/upload-artifact@v4
if: always()
with:
name: logs
name: logs-${{ matrix.configuration }}-${{ matrix.platform }}
path: _logs

report:
Expand All @@ -54,8 +54,9 @@ jobs:
- name: Retrieve overview reports
uses: actions/download-artifact@v4
with:
name: logs
path: _logs
pattern: logs-*
merge-multiple: true

- name: Join and generate global reports
run: .\.github\scripts\Join-CsvReports.ps1
Expand Down

0 comments on commit bd6383b

Please sign in to comment.