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 3431740 commit 0acf55aCopy full SHA for 0acf55a
.github/workflows/manual-tag.yml
@@ -2,10 +2,6 @@ name: Manual Tag Creation
2
3
on:
4
workflow_dispatch:
5
- inputs:
6
- tag:
7
- description: 'Next release tag'
8
- required: true
9
10
jobs:
11
tag-creation:
@@ -15,11 +11,7 @@ jobs:
15
uses: actions/checkout@v2.3.4
16
12
with:
17
13
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
18
- - name: Tag
19
- run: |
20
- echo ${{ github.event.inputs.tag }}
21
- echo "NEXT_VERSION=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
22
14
- name: Update version
23
run: |
24
- npm version ${{ env.RELEASE_VERSION }}
+ npm version patch
25
git push && git push --tags
0 commit comments