We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 33adea1 + ac4b94f commit f361ca8Copy full SHA for f361ca8
.github/workflows/publish.yml
@@ -38,3 +38,12 @@ jobs:
38
- run: npm publish --provenance --access public
39
env:
40
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
+ - name: Setup npm registry
42
+ uses: actions/setup-node@v4
43
+ with:
44
+ registry-url: "https://registry.npmjs.org"
45
+ node-version: ${{ env.NODE_VERSION }}
46
+ - name: Publish to npm
47
+ run: npm publish --access public
48
+ env:
49
+ NODE_AUTH_TOKEN: ${{ secrets.NPMJS }}
0 commit comments