From 3a3a566f5cfc1dcff0ef44c9ce42035caf0f5f46 Mon Sep 17 00:00:00 2001 From: "Dylan H. Morris" Date: Fri, 27 Sep 2024 20:57:45 -0400 Subject: [PATCH] Move tutorials make to main sphinx makefile, update website workflow accordingly --- .github/workflows/website.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/website.yaml b/.github/workflows/website.yaml index 4ac4c8d8..76624d8a 100644 --- a/.github/workflows/website.yaml +++ b/.github/workflows/website.yaml @@ -36,7 +36,7 @@ jobs: # which is then uploaded as an artifact. - name: Render documents run: | - cd docs/source/tutorials + cd docs poetry run make tutorials_clean poetry run make tutorials_md @@ -84,7 +84,9 @@ jobs: # Building - name: Build HTML using Poetry - run: poetry run sphinx-build -M html docs/source/ docs/build/ + run: | + cd docs + poetry run make html # Upload - name: Upload artifacts