From bd6383bc2358044f4bce3f1ec10a5a25b659f7c8 Mon Sep 17 00:00:00 2001 From: Adonais Romero Gonzalez Date: Tue, 24 Sep 2024 16:30:26 -0700 Subject: [PATCH] Change parameters to fix artifact name conflict issues --- .github/workflows/ci-pr.yml | 5 +++-- .github/workflows/ci.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) 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