Skip to content

Commit e66bcde

Browse files
timiclaude
authored andcommitted
fix: use correct Tauri v2 env vars to skip notarization and AppImage
- Use TAURI_SKIP_NOTARIZATION=1 instead of APPLE_NOTARIZE=false - Use TAURI_BUNDLE_TARGETS=deb instead of TAURI_BUNDLE_TARGET=deb Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4802274 commit e66bcde

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ jobs:
141141
APPLE_ID: "${{ secrets.APPLE_ID }}"
142142
APPLE_PASSWORD: "${{ secrets.APPLE_PASSWORD }}"
143143
APPLE_TEAM_ID: "${{ secrets.APPLE_TEAM_ID }}"
144-
APPLE_NOTARIZE: false
144+
# Tauri v2 uses TAURI_SKIP_NOTARIZATION to skip auto-notarization
145+
TAURI_SKIP_NOTARIZATION: 1
145146
SIGNING_IDENTITY: "${{ secrets.APPLE_SIGNING_IDENTITY }}"
146147

147148
- name: Ensure all binaries are signed (fallback)
@@ -268,7 +269,7 @@ jobs:
268269
run: pnpm tauri:build
269270
env:
270271
# Only build deb package to avoid linuxdeploy AppImage issues
271-
TAURI_BUNDLE_TARGET: deb
272+
TAURI_BUNDLE_TARGETS: deb
272273

273274
- name: Find deb file
274275
id: deb

0 commit comments

Comments
 (0)