We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 887f9f4 commit b51befcCopy full SHA for b51befc
.github/workflows/build.yml
@@ -24,10 +24,10 @@ jobs:
24
rustup default 1.76.0-x86_64-unknown-linux-gnu
25
- name: Build Linux
26
run: |
27
- cargo build
+ cargo build --release
28
- uses: actions/upload-artifact@v4
29
with:
30
- path: "target/debug/libdrift_ffi_sys.so"
+ path: "target/release/libdrift_ffi_sys.so"
31
name: libdrift_ffi_sys.so
32
publish-mac:
33
runs-on: macos-latest
@@ -44,8 +44,8 @@ jobs:
44
cargo build
45
- name: Build Mac
46
47
48
49
50
- path: "target/debug/libdrift_ffi_sys.dylib"
+ path: "target/release/libdrift_ffi_sys.dylib"
51
name: libdrift_ffi_sys.dylib
0 commit comments