Skip to content

Commit

Permalink
try artifact fix in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
maichmueller committed Sep 4, 2024
1 parent 372645d commit 31d7e1f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,11 @@ jobs:
-C ${{ matrix.config.build_type }}
- name: Upload lib test result artifacts
uses: actions/upload-artifact@v4
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

Expand All @@ -185,8 +186,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
Expand Down

0 comments on commit 31d7e1f

Please sign in to comment.