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 92eaeea commit 9f1b490Copy full SHA for 9f1b490
.github/workflows/manual-tag.yml
@@ -20,9 +20,6 @@ jobs:
20
echo ${{ github.event.inputs.tag }}
21
echo "NEXT_VERSION=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
22
- name: Update version
23
- run: npm version ${{ env.RELEASE_VERSION }}
24
- - name: Update version
25
- uses: reedyuk/npm-version@1.1.1
26
- with:
27
- version: ${{ env.RELEASE_VERSION }}
28
- git-tag-version: 'true'
+ run: |
+ npm version ${{ env.RELEASE_VERSION }}
+ git push origin ${{ env.RELEASE_VERSION }}
0 commit comments