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.
2 parents 77e1cd9 + 54d671d commit 14b4f61Copy full SHA for 14b4f61
.github/workflows/publish.yml
@@ -35,7 +35,9 @@ jobs:
35
36
- name: Update version if specified
37
if: github.event_name == 'workflow_dispatch' && github.event.inputs.version != ''
38
- run: npm version ${{ github.event.inputs.version }} --no-git-tag-version
+ env:
39
+ VERSION: ${{ github.event.inputs.version }}
40
+ run: npm version "$VERSION" --no-git-tag-version
41
42
- name: Publish to NPM
43
run: npm publish --access public
0 commit comments