From 6090abe5a37abd01a81a87d020a23538f9c7754b Mon Sep 17 00:00:00 2001 From: Michael Aichmueller Date: Wed, 4 Sep 2024 14:38:10 +0200 Subject: [PATCH] try artifact fix in workflow --- .github/workflows/cpp.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index 8ed7c25..c64484d 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -10,7 +10,7 @@ jobs: - name: checkout uses: actions/checkout@v4 - name: Install Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v4 with: python-version: '3.10' - name: Update pip @@ -168,7 +168,7 @@ jobs: uses: actions/upload-artifact@v4 if: success() with: - name: gtest-results + name: gtest-results-${{ matrix.config.os }}-${{ matrix.config.cc }}-${{ matrix.config.compiler_version }} path: ./build/**/gtest-report-${{ matrix.config.os }}-${{ matrix.config.cc }}-${{ matrix.config.compiler_version }}.xml retention-days: 1 @@ -185,8 +185,9 @@ jobs: - name: Download Artifacts uses: actions/download-artifact@v4 with: - name: gtest-results + pattern: gtest-results-* path: ./artifacts/gtest-results_downloaded + merge-multiple: true - name: Display structure of downloaded files run: ls