Skip to content

install pandoc

install pandoc #216

name: Documentation
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout github repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Lint
uses: psf/black@stable
with:
version: "23.7.0"
- name: Upgrade pip, install package, install requirements, build docs
run: |
apt-get --allow-releaseinfo-change update -y && apt-get install pandoc
pip install --upgrade pip
pip install .
pip install -r ./docs/requirements.txt
pip install sphinx
sphinx-build docs ./docs/_build/html/
- name: Checkout pages branch
uses: actions/checkout@v4
with:
ref: gh-pages
path: gh-pages
- name: Commit documentation changes
run: |
cp -r docs/_build/html/* gh-pages/
cd gh-pages
touch .nojekyll
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update documentation" -a || true
git push