Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 7e70226

Browse files
Change dir in release workflow (#22)
Signed-off-by: elenagaljak-db <elena.galjak@databricks.com>
1 parent 6db2200 commit 7e70226

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ jobs:
3737

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

4442
- name: Install Zig (for aarch64)
4543
if: matrix.target == 'aarch64'
@@ -54,8 +52,7 @@ jobs:
5452
source "$HOME/.cargo/env"
5553
rustup target add aarch64-unknown-linux-gnu
5654
cargo install cargo-zigbuild
57-
cd rust
58-
maturin build --release --target aarch64-unknown-linux-gnu --zig --out ../dist
55+
maturin build --release --target aarch64-unknown-linux-gnu --zig --manifest-path rust/Cargo.toml --out dist
5956
6057
- name: Upload wheels
6158
uses: actions/upload-artifact@v4
@@ -84,9 +81,7 @@ jobs:
8481
run: pip install maturin
8582

8683
- name: Build wheels
87-
run: |
88-
cd rust
89-
maturin build --release --out ../dist
84+
run: maturin build --release --manifest-path rust/Cargo.toml --out dist
9085
shell: bash
9186

9287
- name: Upload wheels

0 commit comments

Comments
 (0)