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 7d21525 commit 71506a3Copy full SHA for 71506a3
.github/workflows/publish.yml
@@ -12,14 +12,15 @@ jobs:
12
contents: read
13
packages: write
14
steps:
15
- - uses: actions/checkout@v4
16
- - uses: actions/setup-node@v4
+ - uses: actions/checkout@v5
+ - uses: actions/setup-node@v5
17
with:
18
node-version: 24
19
+ registry-url: 'https://registry.npmjs.org'
20
cache: yarn
21
- run: yarn --frozen-lockfile
22
- run: yarn test
23
- run: yarn lint
- - run: npm publish
24
+ - run: npm publish --provenance --access public
25
env:
26
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments