From cac038f4df566df1d44877c38ba3050fe2c529ab Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Mon, 11 May 2026 10:16:22 +0530 Subject: [PATCH] fix(publish): quote release tag passed to SignPath SignPath's GitHub Action parses each parameter value as JSON, so a bare 20.2.0-rc.1 fails with a SyntaxError at position 4. Wrap the value in double quotes so it's interpreted as a JSON string. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b5726c3..d393ab7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -74,7 +74,7 @@ jobs: wait-for-completion: true output-artifact-directory: build-signed parameters: | - version: ${{ github.event.release.tag_name }} + version: "${{ github.event.release.tag_name }}" - name: Replace unsigned Windows binaries run: |