File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77jobs :
88 beta_release :
9- if : github.event.pull_request.draft == false
9+ if : github.event.pull_request.draft == false && github.event.pull_request.head.repo.fork == false
1010 runs-on : ubuntu-latest
11+ concurrency :
12+ group : beta-release-${{ github.event.pull_request.number }}
13+ cancel-in-progress : true
1114 permissions :
1215 contents : read
1316 id-token : write
17+ issues : write
1418 steps :
1519 - uses : actions/checkout@v4
1620 with :
1721 ref : ${{ github.head_ref }}
1822 - uses : actions/setup-node@v4
1923 with :
20- node-version : ' 20.x '
24+ node-version : ' 22.14.0 '
2125 registry-url : ' https://registry.npmjs.org'
2226 cache : ' yarn'
2327
3842 GITHUB_PR_NUMBER : ${{ github.event.pull_request.number }}
3943
4044 - name : Release a new beta version
41- run : npm publish --tag beta --provenance -- access public
45+ run : npm publish --tag beta --access public
4246
4347 - uses : actions/github-script@v6
4448 with :
You can’t perform that action at this time.
0 commit comments