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
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ jobs:

- name: Set up pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
# The pnpm tooling lives under .github/release/, not the repo root,
# so the action must read its pinned `packageManager` version from
# there. Without this it scans the (nonexistent) root package.json
# and fails with "No pnpm version is specified".
package_json_file: .github/release/package.json

- name: Set up Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
Expand Down Expand Up @@ -155,6 +161,12 @@ jobs:

- name: Set up pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
# The pnpm tooling lives under .github/release/, not the repo root,
# so the action must read its pinned `packageManager` version from
# there. Without this it scans the (nonexistent) root package.json
# and fails with "No pnpm version is specified".
package_json_file: .github/release/package.json

- name: Set up Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
Expand Down