Skip to content

Commit 4815039

Browse files
authored
Fix syntax for version tag in CI workflow
1 parent 8fb65b4 commit 4815039

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
env:
102102
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
103103
run: |
104-
TAG="v$(node -p "require('./package.json').version")"
104+
TAG="v$(node -p 'require("./package.json").version')"
105105
106106
if gh release view "$TAG" >/dev/null 2>&1; then
107107
echo "Release $TAG already exists. Skipping."

0 commit comments

Comments
 (0)