From 58073b6c72925b1663ea1128bf1b3df2e396f66a Mon Sep 17 00:00:00 2001 From: Paul Mulligan Date: Fri, 15 May 2026 16:43:34 -0400 Subject: [PATCH] ci(release): defer pnpm version to packageManager MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pnpm/action-setup@v6 errors out (ERR_PNPM_BAD_PM_VERSION) when both `version` and `packageManager` are set. The repo pins pnpm@10.15.1 in package.json, so drop the conflicting `version: 9` from release.yml and let the action read packageManager — matching how ci.yml already works via corepack. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/release.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 82cc08f..59f62f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,8 +34,6 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@v6 - with: - version: 9 - name: Install dependencies run: pnpm install --frozen-lockfile