Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.
Merged
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
11 changes: 3 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ jobs:

- name: Build wheels (x86_64)
if: matrix.target == 'x86_64'
run: |
cd rust
maturin build --release --out ../dist
run: maturin build --release --manifest-path rust/Cargo.toml --out dist

- name: Install Zig (for aarch64)
if: matrix.target == 'aarch64'
Expand All @@ -54,8 +52,7 @@ jobs:
source "$HOME/.cargo/env"
rustup target add aarch64-unknown-linux-gnu
cargo install cargo-zigbuild
cd rust
maturin build --release --target aarch64-unknown-linux-gnu --zig --out ../dist
maturin build --release --target aarch64-unknown-linux-gnu --zig --manifest-path rust/Cargo.toml --out dist

- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -84,9 +81,7 @@ jobs:
run: pip install maturin

- name: Build wheels
run: |
cd rust
maturin build --release --out ../dist
run: maturin build --release --manifest-path rust/Cargo.toml --out dist
shell: bash

- name: Upload wheels
Expand Down