File tree Expand file tree Collapse file tree 1 file changed +20
-3
lines changed
Expand file tree Collapse file tree 1 file changed +20
-3
lines changed Original file line number Diff line number Diff line change 77
88jobs :
99 release :
10+ runs-on : ubuntu-latest
1011 permissions :
1112 id-token : write
1213 contents : write
13- runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v4
15+ - uses : actions/checkout@v5
1616 with :
1717 fetch-depth : 0
18+ persist-credentials : false
19+
20+ - name : Install pnpm
21+ uses : pnpm/action-setup@v4.1.0
22+
1823 - uses : actions/setup-node@v4
1924 with :
25+ cache : pnpm
2026 node-version : lts/*
2127 registry-url : https://registry.npmjs.org/
22- - run : npx changelogithub
28+
29+ - run : pnpx changelogithub
30+ continue-on-error : true
2331 env :
2432 GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
33+
34+ - name : Install dependencies
35+ run : pnpm install
36+
37+ - name : Update npm
38+ run : npm install -g npm@latest
39+
40+ - name : Publish to NPM
41+ run : pnpm publish --no-git-checks
You can’t perform that action at this time.
0 commit comments