Skip to content

2024.03.2

2024.03.2 #332

Workflow file for this run

name: Publish docs via GitHub Pages
on:
release:
types: [ published ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: cd docs/ && pip install -r requirements.txt
- run: cd docs/ && mkdocs gh-deploy --force
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}