Skip to content

Commit 8e81f59

Browse files
committed
ci(docs): add setup-just step for justfile-based build
why: CI failed because `just` wasn't installed. The docs workflow switched from `make html` to `just html` but was missing the setup-just action. what: - Add extractions/setup-just@v3 step before docs build
1 parent 2423f23 commit 8e81f59

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/docs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ jobs:
6060
python -V
6161
uv run python -V
6262
63+
- name: Install just
64+
if: env.PUBLISH == 'true'
65+
uses: extractions/setup-just@v3
66+
6367
- name: Cache sphinx fonts
6468
if: env.PUBLISH == 'true'
6569
uses: actions/cache@v5

0 commit comments

Comments
 (0)