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 aec7fd3 commit 7a06239Copy full SHA for 7a06239
.github/workflows/manual-release.yml
@@ -83,14 +83,14 @@ jobs:
83
echo "DRY RUN: New version would be: $NEW_VERSION"
84
git checkout -- package.json package-lock.json
85
86
- - name: Bump version and push
+ - name: Bump version and push tags
87
if: ${{ !inputs.dry_run }}
88
id: version_bump
89
run: |
90
NEW_VERSION=$(npm version ${{ inputs.version_type }})
91
echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
92
echo "New version: $NEW_VERSION"
93
- git push --tags origin main
+ git push --tags origin
94
95
- name: Create GitHub Release
96
0 commit comments