Skip to content

Commit

Permalink
ci: fix workflow by installing myst_parser for Sphinx
Browse files Browse the repository at this point in the history
Added the installation of `myst_parser` to the CI workflow to resolve an issue preventing the documentation build from running correctly. This parser allows Markdown support in Sphinx, enhancing the flexibility and readability of the documentation.

- Updated CI configuration to include `python -m install myst_parser`.
- Ensured successful build and upload of Sphinx documentation.

This fix addresses the workflow problem and ensures continuous and automated updates of WML documentation.
  • Loading branch information
kennylajara authored Jun 25, 2024
1 parent f8d655c commit e504dcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/host_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
python -m pip install sphinx-rtd-theme
# python -m pip install sphinxcontrib-apidoc
python -m pip install sphinx-autoapi
python -m install myst_parser
python -m pip install myst_parser
- name: make the sphinx docs
run: |
Expand Down

0 comments on commit e504dcf

Please sign in to comment.