From b4ce6187ff6fd6f33141ff241b47c6fc14b9ad9f Mon Sep 17 00:00:00 2001 From: elenagaljak-db Date: Wed, 18 Feb 2026 18:03:13 +0100 Subject: [PATCH] Change dir in release workflow Signed-off-by: elenagaljak-db --- .github/workflows/release.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8fdb335..8d53de9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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' @@ -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 @@ -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