Skip to content

Commit

Permalink
remove quotes that break version check
Browse files Browse the repository at this point in the history
  • Loading branch information
acalcutt committed Jan 2, 2024
1 parent 7ac4472 commit 1a890c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/node-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
id: check
run: |
currentVersion="$( node -e "console.log(require('./package.json').version)" )"
isPublished="$( npm view @acalcutt/maplibre-gl-native-test versions --json | jq -c --arg cv '$currentVersion' 'any(. == $cv)' )"
isPublished="$( npm view @acalcutt/maplibre-gl-native-test versions --json | jq -c --arg cv $currentVersion 'any(. == $cv)' )"
if [ "$isPublished" == "true" ]; then
echo "changed=false" >> "$GITHUB_OUTPUT"
else
Expand Down

0 comments on commit 1a890c6

Please sign in to comment.