Skip to content

Commit c08dae4

Browse files
committed
ci(docs): Update workflow to use just commands
why: Align CI with new justfile-based build system what: - Replace make commands with just equivalents in docs workflow
1 parent 479e65e commit c08dae4

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/docs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ jobs:
5454
if: env.PUBLISH == 'true'
5555
run: uv sync --all-extras --dev
5656

57+
- name: Install just
58+
if: env.PUBLISH == 'true'
59+
uses: extractions/setup-just@v2
60+
5761
- name: Print python versions
5862
if: env.PUBLISH == 'true'
5963
run: |
@@ -63,7 +67,7 @@ jobs:
6367
- name: Build documentation
6468
if: env.PUBLISH == 'true'
6569
run: |
66-
pushd docs; make SPHINXBUILD='uv run sphinx-build' html; popd
70+
cd docs && just html
6771
6872
- name: Configure AWS Credentials
6973
if: env.PUBLISH == 'true'

0 commit comments

Comments
 (0)