Skip to content

Commit f0e7cac

Browse files
committed
ci: install pnpm in docs release workflow
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`.
1 parent 65e5d18 commit f0e7cac

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/manual_release_docs.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ jobs:
5555
- name: Install Python dependencies
5656
run: uv run poe install-dev
5757

58+
- name: Install pnpm and website dependencies
59+
uses: apify/workflows/pnpm-install@main
60+
with:
61+
working-directory: website
62+
5863
- name: Build Docusaurus docs
5964
run: uv run poe build-docs
6065
env:

0 commit comments

Comments
 (0)