From f96564df9a2b9727588a0b843dfef0cc8c64fda2 Mon Sep 17 00:00:00 2001 From: rUv Date: Wed, 3 Dec 2025 18:28:18 +0000 Subject: [PATCH] fix(workflow): Use correct napi-rs CLI options for build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed --cargo-cwd to proper --manifest-path and -p flags. The build command now matches the working package.json script format. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/sona-napi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sona-napi.yml b/.github/workflows/sona-napi.yml index 58411fc1..db66acbe 100644 --- a/.github/workflows/sona-napi.yml +++ b/.github/workflows/sona-napi.yml @@ -94,7 +94,7 @@ jobs: env: CARGO_BUILD_TARGET: ${{ matrix.target }} run: | - npx napi build --platform --release --cargo-cwd ../../../crates/sona --features napi --target ${{ matrix.target }} + npx napi build --platform --release -p ruvector-sona --manifest-path ../../../crates/sona/Cargo.toml -F napi --target ${{ matrix.target }} - name: List built files working-directory: npm/packages/sona