File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -102,6 +102,16 @@ jobs:
102102 GPG_PRIVATE_KEY : ${{ secrets.GPG_PRIVATE_KEY }}
103103 run : echo "$GPG_PRIVATE_KEY" | gpg --batch --import
104104
105+ - name : Verify signing key is set (debug)
106+ env :
107+ TAURI_SIGNING_PRIVATE_KEY : ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
108+ run : |
109+ if [ -z "$TAURI_SIGNING_PRIVATE_KEY" ]; then
110+ echo "::error::TAURI_SIGNING_PRIVATE_KEY is empty or not set!"
111+ exit 1
112+ fi
113+ echo "TAURI_SIGNING_PRIVATE_KEY is set (${#TAURI_SIGNING_PRIVATE_KEY} chars)"
114+
105115 - name : Build (release)
106116 run : npm run tauri build -- --bundles deb,appimage,rpm
107117 env :
@@ -173,7 +183,7 @@ jobs:
173183 run : npx svelte-kit sync
174184
175185 - name : Build (release, universal binary)
176- run : npm run tauri build -- --bundles dmg --target universal-apple-darwin
186+ run : npm run tauri build -- --bundles app, dmg --target universal-apple-darwin
177187 env :
178188 CI : true
179189 TAURI_SIGNING_PRIVATE_KEY : ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
You can’t perform that action at this time.
0 commit comments