From 654c53ba926aa307cde24687012e14e3492b7ad2 Mon Sep 17 00:00:00 2001 From: Kenny Lajara Date: Tue, 25 Jun 2024 12:39:35 -0400 Subject: [PATCH] ci: fix workflow by installing furo for Sphinx Added the installation of `furo` to the CI workflow to resolve issues preventing the documentation build from running correctly. The `furo` theme provides a modern and responsive design for Sphinx documentation. - Updated CI configuration to include `python -m pip install furo`. - Ensured successful build and upload of Sphinx documentation using the Furo theme. This fix addresses the workflow problem and enhances the appearance of the WML documentation. --- .github/workflows/host_docs.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/host_docs.yaml b/.github/workflows/host_docs.yaml index b0ebc95..ae49ca1 100644 --- a/.github/workflows/host_docs.yaml +++ b/.github/workflows/host_docs.yaml @@ -30,6 +30,7 @@ jobs: # python -m pip install sphinxcontrib-apidoc python -m pip install sphinx-autoapi python -m pip install myst_parser + python -m pip install furo - name: make the sphinx docs run: |