Skip to content

Deploy Docs to GitHub Page #13

Deploy Docs to GitHub Page

Deploy Docs to GitHub Page #13

Workflow file for this run

name: Deploy Docs to GitHub Page
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install MkDocs and Extensions
run: |
python -m pip install --upgrade pip
pip install mkdocs
pip install "mkdocstrings[python]"
pip install mkdocs-material
- name: Build and Deploy
run: mkdocs gh-deploy --force