Skip to content

Commit

Permalink
separate steps for windows and linux artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
jimkring authored Oct 7, 2022
1 parent e9c2919 commit cead996
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,17 @@ jobs:
working-directory: ${{ env.build_dir }}
run: make

- name: Upload Artifacts
- name: Upload Artifacts (Windows)
uses: actions/upload-artifact@v3
if: runner.os == 'Windows'
with:
name: ${{ matrix.os }}-x64-cuda-${{ matrix.cuda }}
path: build/Release/**/*

- name: Upload Artifacts (Linux)
uses: actions/upload-artifact@v3
if: runner.os == 'Windows'
with:
name: ${{ matrix.os }}-x64-cuda-${{ matrix.cuda }}
path: build/**/*

0 comments on commit cead996

Please sign in to comment.