Skip to content

Commit

Permalink
optimize build
Browse files Browse the repository at this point in the history
  • Loading branch information
jordy25519 committed Sep 25, 2024
1 parent 887f9f4 commit b51befc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
rustup default 1.76.0-x86_64-unknown-linux-gnu
- name: Build Linux
run: |
cargo build
cargo build --release
- uses: actions/upload-artifact@v4
with:
path: "target/debug/libdrift_ffi_sys.so"
path: "target/release/libdrift_ffi_sys.so"
name: libdrift_ffi_sys.so
publish-mac:
runs-on: macos-latest
Expand All @@ -44,8 +44,8 @@ jobs:
cargo build
- name: Build Mac
run: |
cargo build
cargo build --release
- uses: actions/upload-artifact@v4
with:
path: "target/debug/libdrift_ffi_sys.dylib"
path: "target/release/libdrift_ffi_sys.dylib"
name: libdrift_ffi_sys.dylib

0 comments on commit b51befc

Please sign in to comment.