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 cb7e32d commit 6090abe
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 6090abe

Please sign in to comment.