Skip to content

Some cleanup

Some cleanup #37

Workflow file for this run

name: Build and push GH-Pages
on:
push:
branches:
- "master"
jobs:
push_gh_pages:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Build Sphinx
run: |
python -m pip install -r requirements.txt
python -m pip install .
python -m pip install sphinx
python dev/helptext.py -d docs/_helptext ./taxit.py
sphinx-build docs html
-
name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./html