From 63050174e91e890b167a13a6da2de27f55c51ea8 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 21:39:46 +0000 Subject: [PATCH] fix: add pnpm install step to release workflow Add explicit pnpm installation before Install dependencies step. Without this, ubuntu-latest runner fails with 'pnpm: command not found' since pnpm is not bundled with the Node 20 action. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/release.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index abb903d..98f8860 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -25,6 +25,9 @@ jobs: node-version: '20' cache: 'pnpm' + - name: Install pnpm + run: npm install -g pnpm + - name: Install dependencies run: pnpm install --frozen-lockfile -- 2.52.0