Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ci(docs): Update workflow to use just instead of make (#1005)
why: docs/Makefile was removed in justfile migration
what:
- Add extractions/setup-just@v2 to install just command runner
- Replace make html with just html for documentation builds
  • Loading branch information
tony committed Dec 27, 2025
commit a7256ac8f3a4859b08da2a96e2769137bf2b1a6d
6 changes: 5 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ jobs:
if: env.PUBLISH == 'true'
run: uv sync --all-extras --dev

- name: Install just
if: env.PUBLISH == 'true'
uses: extractions/setup-just@v2

- name: Print python versions
if: env.PUBLISH == 'true'
run: |
Expand All @@ -61,7 +65,7 @@ jobs:
- name: Build documentation
if: env.PUBLISH == 'true'
run: |
pushd docs; make SPHINXBUILD='uv run sphinx-build' html; popd
cd docs && just html

- name: Configure AWS Credentials
if: env.PUBLISH == 'true'
Expand Down