Skip to content

Fix formating and bump version #21

Fix formating and bump version

Fix formating and bump version #21

name: Publish the documentation
on:
push:
branches: [main]
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout the branch
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Build the documentation with Mkdocs
run: |
pip install -r docs/requirements.txt
mkdocs build
- name: Publish the documentation
uses: JamesIves/github-pages-deploy-action@3.6.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: site
CLEAN: true