We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 307b13a commit 903bcd0Copy full SHA for 903bcd0
1 file changed
.github/workflows/release.yml
@@ -57,6 +57,13 @@ jobs:
57
${{ steps.changelog.outputs.compareurl }}
58
${{ steps.changelog.outputs.changelog }}
59
60
- - uses: JS-DevTools/npm-publish@v4
+ - name: Setup Node.js for npm publish
61
+ if: steps.create_tag.outputs.successful == 'true'
62
+ uses: actions/setup-node@v4
63
with:
- access: public
64
+ node-version-file: .nvmrc
65
+ registry-url: 'https://registry.npmjs.org'
66
+
67
+ - name: Publish to npm
68
69
+ run: npm publish --access public
0 commit comments