Skip to content
This repository was archived by the owner on May 7, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ jobs:
run: cd native && cargo build --release
- name: Upload artifact on Linux
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: native-library
path: native/target/release/*.so
- name: Upload artifact on MacOS
if: ${{ matrix.os == 'macos-latest' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: native-library
path: native/target/release/*.dylib
- name: Upload artifact on Windows
if: ${{ matrix.os == 'windows-latest' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: native-library
path: native\target\release\*.dll
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
with:
fetch-depth: 0
- name: Download native artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: native-library
- name: Copy native library on Linux
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
with:
java-version: '17'
- name: Download native artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: native-library
- name: Release
Expand Down