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
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,10 +303,15 @@ jobs:
echo "$PWD/shared-bin" >> "$GITHUB_PATH"

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
Comment thread
bfops marked this conversation as resolved.
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
Comment thread
bfops marked this conversation as resolved.

- name: Install npm with trusted publishing support
run: |
# this is the minimum version required to use trusted publishing
npm install --global npm@11.5.1
Comment thread
bfops marked this conversation as resolved.
npm --version

- name: Install pnpm
run: npm install -g pnpm
Expand Down
Loading