From f0e7cac8564d0589d79358c56d10cb9960ba79e7 Mon Sep 17 00:00:00 2001 From: Vlada Dusek Date: Tue, 5 May 2026 13:46:08 +0200 Subject: [PATCH] ci: install pnpm in docs release workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The docs release workflow runs `uv run poe build-docs`, which shells out to `pnpm`, but pnpm was not installed on the runner — causing the job to fail with `pnpm: not found`. Add the missing pnpm install step, matching the pattern already used in `manual_version_docs.yaml`. --- .github/workflows/manual_release_docs.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/manual_release_docs.yaml b/.github/workflows/manual_release_docs.yaml index 72d492f69f..9d94da874c 100644 --- a/.github/workflows/manual_release_docs.yaml +++ b/.github/workflows/manual_release_docs.yaml @@ -55,6 +55,11 @@ jobs: - name: Install Python dependencies run: uv run poe install-dev + - name: Install pnpm and website dependencies + uses: apify/workflows/pnpm-install@main + with: + working-directory: website + - name: Build Docusaurus docs run: uv run poe build-docs env: