Skip to content

Commit b02d906

Browse files
committed
ci(docs): Update workflow to use just instead of make (#500)
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
1 parent fbcd2f6 commit b02d906

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
@@ -52,10 +52,14 @@ jobs:
5252
if: env.PUBLISH == 'true'
5353
run: uv sync --all-extras --dev
5454

55+
- name: Install just
56+
if: env.PUBLISH == 'true'
57+
uses: extractions/setup-just@v2
58+
5559
- name: Build documentation
5660
if: env.PUBLISH == 'true'
5761
run: |
58-
pushd docs; make SPHINXBUILD='uv run sphinx-build' html; popd
62+
cd docs && just html
5963
6064
- name: Configure AWS Credentials
6165
if: env.PUBLISH == 'true'

0 commit comments

Comments
 (0)