File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,14 @@ jobs:
2121 - name : Check out code
2222 uses : actions/checkout@v5
2323
24+ - name : setup Node.js
25+ uses : actions/setup-node@v6
26+ with :
27+ node-version : 24
28+ registry-url : https://registry.npmjs.org/
29+
2430 - name : setup bun
2531 uses : oven-sh/setup-bun@v2
26- with :
27- registries : |
28- https://registry.npmjs.org/
2932
3033 - name : Install dependencies
3134 run : bun install --frozen-lockfile
3437 run : make build
3538
3639 - name : Publish to npm
37- run : bunx npm publish --provenance # workaround for bun not supporting trusted publishing of npm (https://github.com/oven-sh/bun/issues/15601)
40+ run : bunx npm@16.8.0 publish --provenance # workaround for bun not supporting trusted publishing of npm (https://github.com/oven-sh/bun/issues/15601)
3841 if : github.event_name == 'release'
You can’t perform that action at this time.
0 commit comments