We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84f7a9a commit f73b002Copy full SHA for f73b002
1 file changed
.github/workflows/ci.yml
@@ -23,12 +23,15 @@ jobs:
23
needs: test
24
if: startsWith(github.ref, 'refs/tags/v')
25
runs-on: ubuntu-latest
26
+ permissions:
27
+ contents: read
28
+ id-token: write
29
steps:
30
- uses: actions/checkout@v6
31
- uses: actions/setup-node@v4
32
with:
33
node-version: '20'
34
registry-url: 'https://registry.npmjs.org'
- - run: npm publish --tag alpha
35
+ - run: npm publish --provenance --tag alpha
36
env:
37
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments