Skip to content

Update README.md

Update README.md #17

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [ main ]
# Required so GitHub Actions can push to gh-pages
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # REQUIRED for mkdocs gh-deploy
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install MkDocs + Material
run: pip install mkdocs mkdocs-material
- name: Deploy documentation
run: mkdocs gh-deploy --force