From 41d1b84cbf31a5b7f018f8d4b86f650b4191ba30 Mon Sep 17 00:00:00 2001 From: Robert Carroll Date: Tue, 5 May 2026 15:20:47 -0500 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9B=20Update=20PR=20builds=20to=20?= =?UTF-8?q?use=20just?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current version of building test pages isn't adding the details to the build deployments, so I'm changing it to use the same strategies for the main deploy docs. --- .github/workflows/test_pages_build.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_pages_build.yaml b/.github/workflows/test_pages_build.yaml index d363a5a..6fe794c 100644 --- a/.github/workflows/test_pages_build.yaml +++ b/.github/workflows/test_pages_build.yaml @@ -44,12 +44,16 @@ jobs: with: python-version: 3.13 + - name: Install just + run: | + uv tool install rust-just + - name: Install dependencies run: uv sync --dev --no-progress - name: Build documentation run: | - uv run mkdocs build -d site + just gen-doc touch site/.nojekyll # https://github.com/rossjrw/pr-preview-action From a0e7561391f5b950cec6a1a38698713d776ae215 Mon Sep 17 00:00:00 2001 From: Robert Carroll Date: Tue, 5 May 2026 15:25:32 -0500 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=90=9B=20Need=20to=20build=20after=20?= =?UTF-8?q?gen-doc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test_pages_build.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test_pages_build.yaml b/.github/workflows/test_pages_build.yaml index 6fe794c..4a180c3 100644 --- a/.github/workflows/test_pages_build.yaml +++ b/.github/workflows/test_pages_build.yaml @@ -54,6 +54,7 @@ jobs: - name: Build documentation run: | just gen-doc + uv run mkdocs build -d site touch site/.nojekyll # https://github.com/rossjrw/pr-preview-action