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 921d317 commit 371cd45Copy full SHA for 371cd45
.github/workflows/npm-publish.yml
@@ -1,4 +1,4 @@
1
-name: Publish Package to npmjs
+name: Publish nextjs-toploader to npmjs
2
on:
3
release:
4
types: [published]
@@ -26,10 +26,12 @@ jobs:
26
- name: Compile the Library
27
run: yarn build-lib
28
# Setup .npmrc file to publish to npm
29
- - uses: actions/setup-node@v4
+ - name: Setup the node
30
+ uses: actions/setup-node@v4
31
with:
32
node-version: '20.11.1'
33
registry-url: 'https://registry.npmjs.org'
- - run: npm publish
34
+ - name: Publish nextjs-toploader on npm
35
+ run: npm publish --access public --provenance
36
env:
37
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments