We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5014375 commit 4f70299Copy full SHA for 4f70299
.github/workflows/make-release.yml
@@ -61,7 +61,7 @@ jobs:
61
- name: Set release version
62
id: set-release-version
63
run: |
64
- VERSION=$(cat lerna.json | jq .version -r)
+ VERSION=$(cat package.json | jq .version -r)
65
echo RELEASE_VERSION="$VERSION" >> "$GITHUB_OUTPUT"
66
67
# This job creates a new git tag using the released version (v1.18.1)
@@ -83,4 +83,4 @@ jobs:
83
- name: Create git tag
84
run : |
85
git tag -a v${{ needs.publish-npm.outputs.RELEASE_VERSION }} -m "Release v${{ needs.publish-npm.outputs.RELEASE_VERSION }}"
86
- git push origin v${{ needs.publish-npm.outputs.RELEASE_VERSION }}
+ git push origin v${{ needs.publish-npm.outputs.RELEASE_VERSION }}
0 commit comments