Skip to content

Commit

Permalink
Update upload-artifact action, use different artifact names (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
insolor authored Feb 2, 2024
1 parent 6addcd8 commit fc6c28b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,15 @@ jobs:
run: cargo +nightly-2022-11-06 build --release

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

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

0 comments on commit fc6c28b

Please sign in to comment.