Skip to content

Commit

Permalink
ci: upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
shevernitskiy committed Oct 3, 2023
1 parent 07feab8 commit a44aa7a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,13 @@ jobs:
- name: Build
run: cargo +nightly-2022-11-06 build --release

- name: Upload artifact (win)
uses: actions/upload-artifact@v3
if: matrix.os == 'windows-latest'
path: /target/release/dfint_hook.dll

- name: Upload artifact (linux)
uses: actions/upload-artifact@v3
if: matrix.os == 'ubuntu-latest'
path: /target/release/libdfint_hook.so.dll

0 comments on commit a44aa7a

Please sign in to comment.