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 25079ad commit 5f855f3Copy full SHA for 5f855f3
1 file changed
.github/workflows/release.yml
@@ -19,14 +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
35
+ run: npm publish
0 commit comments