Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
Fix jq command for extraneous double quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricklamers committed Dec 20, 2023
1 parent b20ac31 commit 2168fd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
echo "CHECK_VERSION_OPENASSISTANTS_REACT=" >> $GITHUB_ENV
cd packages/openassistants-react
CURRENT_VERSION=$(node -p "require('./package.json').version")
NPM_VERSION=$(curl -s https://registry.npmjs.org/@definitive-io/openassistants-react | jq '.["dist-tags"].latest')
NPM_VERSION=$(curl -s https://registry.npmjs.org/@definitive-io/openassistants-react | jq -r '.["dist-tags"].latest')
if [ "$CURRENT_VERSION" != "$NPM_VERSION" ]; then
yarn install
echo "CHECK_VERSION_OPENASSISTANTS_REACT=true" >> $GITHUB_ENV
Expand Down

0 comments on commit 2168fd6

Please sign in to comment.