Skip to content

Commit 9046474

Browse files
CodeGhost21claude
andcommitted
fix: use npx instead of yarn to pass --bundles none to Tauri CLI
Yarn v1 strips unknown flags like --bundles before forwarding to the script. Using npx invokes the Tauri CLI directly, preserving all flags. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 507be5c commit 9046474

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ jobs:
7373
run: cd skills && yarn install --frozen-lockfile
7474

7575
- name: Build Tauri app
76-
run: yarn tauri build --bundles none -- --target x86_64-unknown-linux-gnu
76+
run: npx tauri build --bundles none --target x86_64-unknown-linux-gnu
7777
env:
7878
NODE_ENV: production

0 commit comments

Comments
 (0)