Commit 65bf68d
authored
ci: install pnpm in docs release workflow (#1871)
### Description
The `Doc release` workflow ([example failing
run](https://github.com/apify/crawlee-python/actions/runs/25373653575/job/74404711100))
runs `uv run poe build-docs`, which shells out to
`./build_api_reference.sh && pnpm install && uv run pnpm build` inside
`website/`. The runner sets up Node but does not install `pnpm`, so the
step fails with:
```
/usr/bin/sh: 1: pnpm: not found
##[error]Process completed with exit code 127.
```
The pnpm install step was lost when the docs release workflow was
extracted in #1846.
### Changes
- Add the missing `Install pnpm and website dependencies` step using
`apify/workflows/pnpm-install@main`, matching the pattern already used
in `manual_version_docs.yaml`.1 parent 65e5d18 commit 65bf68d
1 file changed
Lines changed: 5 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
58 | 63 | | |
59 | 64 | | |
60 | 65 | | |
| |||
0 commit comments