We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad8a36a commit 62f4956Copy full SHA for 62f4956
.github/workflows/release.yml
@@ -1,6 +1,7 @@
1
name: Release package
2
3
permissions:
4
+ id-token: write
5
contents: write
6
7
on:
@@ -24,16 +25,15 @@ jobs:
24
25
needs: build
26
runs-on: ubuntu-latest
27
steps:
- - uses: actions/checkout@v4
28
+ - uses: actions/checkout@v5
29
with:
30
fetch-depth: 0
31
- uses: actions/setup-node@v4
32
33
node-version: 20
34
registry-url: https://registry.npmjs.org/
- - run: npm publish --access=public
35
- env:
36
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
+ - run: npm install -g npm@latest
+ - run: npm publish
37
- run: npx changelogithub --no-group
38
continue-on-error: true
39
env:
0 commit comments