We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55cd121 commit 2c255d8Copy full SHA for 2c255d8
1 file changed
.github/actions/setup-tauri/action.yml
@@ -78,6 +78,16 @@ runs:
78
$normalized >> $env:GITHUB_ENV
79
"EOF" >> $env:GITHUB_ENV
80
81
+ - name: Generate ephemeral Tauri signing key
82
+ if: ${{ inputs.signing-private-key == '' }}
83
+ shell: bash
84
+ run: |
85
+ set -euo pipefail
86
+
87
+ key_path="${RUNNER_TEMP}/tauri-ci.key"
88
+ pnpm -C gui tauri signer generate --ci --force -w "$key_path"
89
+ echo "TAURI_SIGNING_PRIVATE_KEY_PATH=$key_path" >> "$GITHUB_ENV"
90
91
- name: Get Cargo deps hash (exclude root package version for stable cache key)
92
id: cargo-deps-hash
93
shell: bash
0 commit comments