Skip to content

Commit 83c3453

Browse files
authored
fix: quote VERSION in jq command in release (#5845)
1 parent 3182be6 commit 83c3453

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ jobs:
321321
322322
echo "Updating version in lib/vscode/product.json"
323323
tmp=$(mktemp)
324-
jq '.codeServerVersion = "$VERSION"' release/lib/vscode/product.json > "$tmp" && mv "$tmp" release/lib/vscode/product.json
324+
jq ".codeServerVersion = \"$VERSION\"" release/lib/vscode/product.json > "$tmp" && mv "$tmp" release/lib/vscode/product.json
325325
# Ensure it has the same permissions as before
326326
chmod 644 release/lib/vscode/product.json
327327

0 commit comments

Comments
 (0)