Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/manual_publish_to_npm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Update npm
run: npm install -g npm@latest
# Pin to npm 11: npm 12.0.0 ships a broken `libnpmpublish` that requires the
# top-level `sigstore` module without bundling it, breaking `npm publish --provenance`.
run: npm install -g npm@11
- name: Install dependencies
run: npm ci
- name: Bump pre-release version
Expand Down
Loading