Welcome to the Create Demo project
January 9, 2022 ยท View on GitHub
This repo shows an example of how to use GitHub Pages with Python Sphinx builds.
There are some pre-requisites to building locally:
- Python installed
- Sphinx installed (best in a virtual environment)
If you see errors like Makefile:17: *** missing separator. Stop., likely you do not have Sphinx installed locally.
The magic parts for GitHub Pages builds are:
-
Having the docs source files in a /docs folder.
-
Adding an empty
.nojekyllfile in the root of the /docs folder. -
Having a script that builds the static files for the GitHub Action to run.
-
Adding a new target to the
Makefileandmake.batfile::github: @make html @cp -a _build/html/. ./docs
To build HTML locally:: $ make html
The build for GitHub is only used by the GitHub Action. It which makes the HTML static files and uses the GitHub Actions environment variables including the Secrets storage.
$ make github
Note: When the personal access token format changed, I had to update the Secret in the GitHub Actions settings so that the build would work again.