Skip to content

Commit 507be5c

Browse files
CodeGhost21claude
andcommitted
fix: skip bundling in build workflow with --bundles none
The CI build check only needs to verify compilation succeeds, not produce signed bundles. Using --bundles none skips the bundler entirely, avoiding the TAURI_SIGNING_PRIVATE_KEY requirement. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent a2bd294 commit 507be5c

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 -c '{"bundle":{"createUpdaterArtifacts":false},"plugins":{"updater":{"pubkey":""}}}' -- --target x86_64-unknown-linux-gnu
76+
run: yarn tauri build --bundles none -- --target x86_64-unknown-linux-gnu
7777
env:
7878
NODE_ENV: production

0 commit comments

Comments
 (0)