Skip to content

Commit e4c925b

Browse files
committed
fix: inherit decoded signing key via GITHUB_ENV instead of re-assigning via expression
1 parent 27b50ae commit e4c925b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@ jobs:
156156
uses: tauri-apps/tauri-action@v0
157157
env:
158158
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
159-
TAURI_SIGNING_PRIVATE_KEY: ${{ env.TAURI_SIGNING_PRIVATE_KEY }}
159+
# TAURI_SIGNING_PRIVATE_KEY is inherited from $GITHUB_ENV (set by decode step above).
160+
# Do NOT re-assign it via ${{ env.* }} — that strips newlines and corrupts the key.
160161
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
161162
with:
162163
tagName: ${{ github.ref_name }}

0 commit comments

Comments
 (0)