We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 34d3f2b + 51e65c9 commit 45610d7Copy full SHA for 45610d7
1 file changed
.github/workflows/release.yml
@@ -19,16 +19,17 @@ jobs:
19
- name: Setup NodeJs
20
uses: actions/setup-node@v4
21
with:
22
- node-version: '20.x'
+ node-version: '20'
23
registry-url: 'https://registry.npmjs.org'
24
25
+ - name: Update npm
26
+ run: npm install -g npm@latest
27
+
28
- name: Install dependencies
29
run: npm ci
30
31
- name: Build and run code
32
run: npm run build
33
34
- name: Publish
- run: npm publish --provenance --access public
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
35
+ run: npm publish
0 commit comments