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 77ef966 commit e6e0688Copy full SHA for e6e0688
1 file changed
.github/workflows/publish-npm.yml
@@ -12,17 +12,14 @@ jobs:
12
contents: read
13
id-token: write
14
steps:
15
- - uses: actions/checkout@v4
16
- - uses: actions/setup-node@v4
+ - uses: actions/checkout@v6
+ - uses: actions/setup-node@v6
17
with:
18
- node-version: '20.x'
+ node-version: '24'
19
registry-url: 'https://registry.npmjs.org'
20
21
- name: Install dependencies
22
run: npm ci
23
24
- name: Publish to NPM
25
- run: npm publish --access public --provenance --tag beta
26
- continue-on-error: true
27
- env:
28
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ run: npm publish --access public --tag beta
0 commit comments