We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e7feb2 commit d64d7f3Copy full SHA for d64d7f3
1 file changed
.github/workflows/release.yaml
@@ -29,9 +29,11 @@ jobs:
29
# npm trusted publishing requires npm 11.5.1+ (Node 22.14.0+)
30
node-version: '24'
31
registry-url: 'https://registry.npmjs.org'
32
- # Ensure npm 11.5.1 or later is installed
+ # Ensure npm 11.5.1 or later is installed.
33
+ # Pinned to the 11.x line: npm 12.0.0 ships without the bundled `sigstore`
34
+ # module, which breaks provenance publishing (npm/cli#9722).
35
- name: Update npm
- run: npm install -g npm@latest
36
+ run: npm install -g npm@11
37
- name: Setup bun
38
uses: oven-sh/setup-bun@v2
39
with:
0 commit comments