Skip to content

Commit

Permalink
Merge pull request #3188 from heplesser/fix-artifact-upload
Browse files Browse the repository at this point in the history
Fix uploading of CI artifacts
  • Loading branch information
terhorstd authored Jun 4, 2024
2 parents d49d1b5 + f5d5095 commit 64da939
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/nestbuildmatrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,9 @@ jobs:
if: always()
with:
name: "build-logs-${{ matrix.os }}-${{ matrix.cpp_compiler }}-${{ matrix.use }}"
path: /home/runner/work/nest-simulator/nest-simulator/build/test_report_*/
path: |
build/install_manifest.txt
build/test_report_*/
build_macos:
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }}
Expand Down Expand Up @@ -845,5 +847,7 @@ jobs:
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
if: ${{ always() }}
with:
name: "build_logs_macos"
path: /Users/runner/work/nest-simulator/nest-simulator/build/test_report_*/
name: "${{ matrix.NEST_BUILD_TYPE }}-build-logs-${{ matrix.os }}-${{ matrix.cpp_compiler }}"
path: |
build/install_manifest.txt
build/test_report_*/

0 comments on commit 64da939

Please sign in to comment.