Skip to content

Commit 4f70299

Browse files
authored
chore: update release workflow (#70)
1 parent 5014375 commit 4f70299

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/make-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Set release version
6262
id: set-release-version
6363
run: |
64-
VERSION=$(cat lerna.json | jq .version -r)
64+
VERSION=$(cat package.json | jq .version -r)
6565
echo RELEASE_VERSION="$VERSION" >> "$GITHUB_OUTPUT"
6666
6767
# This job creates a new git tag using the released version (v1.18.1)
@@ -83,4 +83,4 @@ jobs:
8383
- name: Create git tag
8484
run : |
8585
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 }}
86+
git push origin v${{ needs.publish-npm.outputs.RELEASE_VERSION }}

0 commit comments

Comments
 (0)