File tree Expand file tree Collapse file tree 2 files changed +6
-57
lines changed
Expand file tree Collapse file tree 2 files changed +6
-57
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 66 - main
77 workflow_dispatch :
88
9+ permissions :
10+ contents : read
11+ id-token : write
12+
913jobs :
1014 publish :
1115 name : Publish to NPM
1216 runs-on : ubuntu-latest
13- permissions :
14- contents : read
15- id-token : write
1617 if : |
1718 github.event_name == 'workflow_dispatch' ||
1819 startsWith(github.event.head_commit.message, 'release: ')
@@ -21,22 +22,15 @@ jobs:
2122 changelog : ${{ steps.extract-changelog.outputs.changelog }}
2223
2324 steps :
24- - name : Debug workflow info
25- run : |
26- echo "=== Workflow Debug Info ==="
27- echo "Branch: ${{ github.ref_name }}"
28- echo "SHA: ${{ github.sha }}"
29- echo "Event: ${{ github.event_name }}"
30- echo "Using native npm publish (not JS-DevTools)"
31-
3225 - uses : actions/checkout@v4
3326 with :
3427 submodules : " recursive"
3528
3629 - uses : actions/setup-node@v4
3730 with :
38- node-version : " 20 "
31+ node-version : " 24 "
3932 cache : " yarn"
33+ registry-url : " https://registry.npmjs.org"
4034
4135 - name : Install dependencies
4236 run : yarn install --immutable
You can’t perform that action at this time.
0 commit comments