Skip to content

Commit cac038f

Browse files
author
Chirag Aggarwal
committed
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.
1 parent 66bfb48 commit cac038f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
wait-for-completion: true
7575
output-artifact-directory: build-signed
7676
parameters: |
77-
version: ${{ github.event.release.tag_name }}
77+
version: "${{ github.event.release.tag_name }}"
7878
7979
- name: Replace unsigned Windows binaries
8080
run: |

0 commit comments

Comments
 (0)