diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 35ce6aaa1..a87b7523e 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -47,7 +47,7 @@ jobs: uses: actions/upload-artifact@v4 if: always() with: - name: logs + name: logs-${{ matrix.configuration }}-${{ matrix.platform }} path: _logs report: @@ -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 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a213a7ac3..2ad5b87d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: uses: actions/upload-artifact@v4 if: always() with: - name: logs + name: logs-${{ matrix.configuration }}-${{ matrix.platform }} path: _logs report: @@ -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