We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5718b4b commit de1c692Copy full SHA for de1c692
1 file changed
.github/workflows/publish.yml
@@ -1,4 +1,4 @@
1
-# reference: https://docs.npmjs.com/generating-provenance-statements
+# reference: https://docs.npmjs.com/trusted-publishers#for-github-actions
2
3
name: Publish
4
@@ -27,13 +27,11 @@ jobs:
27
- name: Compile project
28
run: bun run compile
29
30
- - name: Use Node.js 20
31
- uses: actions/setup-node@v4
+ - name: Use Node.js 24
+ uses: actions/setup-node@v6
32
with:
33
- node-version: 20
+ node-version: 24
34
registry-url: 'https://registry.npmjs.org'
35
36
- name: Publish package
37
- run: npm publish --provenance --access public
38
- env:
39
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ run: npm publish --access public
0 commit comments