Skip to content

Commit

Permalink
chore: fix publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Jul 3, 2024
1 parent c0d6091 commit 0f63916
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ jobs:
echo "No Token"
else
PACKAGE_NAME=$(yarn info -s . name)
PUBLISHED_VERSION=$(yarn info -s $PACKAGE_NAME version)
corepack enable
PUBLISHED_VERSION=$(yarn npm info --json . | jq -c '.version' -r)
THIS_VERSION=$(node -p "require('./package.json').version")
# Simple bash helper to comapre version numbers
verlte() {
Expand Down

0 comments on commit 0f63916

Please sign in to comment.