Skip to content

Commit 0acf55a

Browse files
fix manual tag
1 parent 3431740 commit 0acf55a

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/manual-tag.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ name: Manual Tag Creation
22

33
on:
44
workflow_dispatch:
5-
inputs:
6-
tag:
7-
description: 'Next release tag'
8-
required: true
95

106
jobs:
117
tag-creation:
@@ -15,11 +11,7 @@ jobs:
1511
uses: actions/checkout@v2.3.4
1612
with:
1713
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
2214
- name: Update version
2315
run: |
24-
npm version ${{ env.RELEASE_VERSION }}
16+
npm version patch
2517
git push && git push --tags

0 commit comments

Comments
 (0)