Skip to content

Commit 25b43d3

Browse files
ChiragAgg5kChirag Aggarwal
andauthored
fix(publish): quote release tag passed to SignPath (#313)
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. Co-authored-by: Chirag Aggarwal <chirag@appwrite.io>
1 parent 66bfb48 commit 25b43d3

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)