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 6afa382 commit cc675d3Copy full SHA for cc675d3
.github/workflows/provenance.yml
@@ -1,8 +1,7 @@
1
-name: Publish Package to npmjs
+name: Publish Package to npm
2
3
on:
4
- release:
5
- types: [created]
+ workflow_dispatch:
6
7
jobs:
8
build:
@@ -16,10 +15,12 @@ jobs:
16
15
- uses: actions/checkout@v4
17
- uses: actions/setup-node@v4
18
with:
19
- node-version: '18'
+ node-version: '20'
20
registry-url: 'https://registry.npmjs.org'
21
cache: npm
22
- - run: npm install
+ scope: "@socketregistry"
+ - run: npm install -g npm@latest
23
+ - run: npm ci
24
- run: npm publish --provenance --access public
25
env:
26
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments