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 5098cd9 commit 3747239Copy full SHA for 3747239
.github/workflows/publish.yml
@@ -2,12 +2,12 @@ name: Publish Release
2
3
on:
4
workflow_dispatch:
5
- inputs:
6
- tag:
7
- description: 'Tag to use. Has to start with extra char like "v"'
8
- default: 'v'
9
- type: string
10
- required: true
+ inputs:
+ tag:
+ description: 'Tag to use. Has to start with extra char like "v"'
+ default: 'v'
+ type: string
+ required: true
11
release:
12
types: [created]
13
@@ -28,8 +28,8 @@ jobs:
28
29
- name: Update version
30
env:
31
- TAG: ${{ github.event.release.tag_name }}
32
- TAG_INPUT: ${{ inputs.tag }}
+ TAG: ${{ github.event.release.tag_name }}
+ TAG_INPUT: ${{ inputs.tag }}
33
run: |
34
${TAG:=$TAG_INPUT}
35
npm version --no-git-tag-version ${$TAG:1}
0 commit comments