Skip to content

Commit 1e41468

Browse files
CodeGhost21claude
andcommitted
Fix build.yml: inline config override to disable updater signing
Pass the JSON config directly to avoid shell variable expansion issues with yarn. Disables updater plugin so TAURI_SIGNING_PRIVATE_KEY is not required for CI builds. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3034647 commit 1e41468

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,6 @@ jobs:
122122
123123
- name: Build Tauri app
124124
working-directory: app
125-
run: |
126-
TAURI_CONFIG_OVERRIDE='{"bundle":{"createUpdaterArtifacts":"never"},"plugins":{"updater":{"active":false}}}'
127-
yarn tauri build -c "$TAURI_CONFIG_OVERRIDE" --bundles none -- -- --bin OpenHuman
125+
run: yarn tauri build -c '{"bundle":{"createUpdaterArtifacts":"never"},"plugins":{"updater":{"active":false}}}' --bundles none -- -- --bin OpenHuman
128126
env:
129127
NODE_ENV: production

0 commit comments

Comments
 (0)