From 0493001c0b4280d234fe4aebad294fde7416fb57 Mon Sep 17 00:00:00 2001 From: insolor <2442833+insolor@users.noreply.github.com> Date: Fri, 2 Feb 2024 09:25:16 +0300 Subject: [PATCH] Update upload-artifact action, use different artifact names --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 52a292a..2e6809f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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