Skip to content

Update README.md

Update README.md #29

Workflow file for this run

name: Deploy MkDocs site to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install MkDocs and dependencies
run: |
pip install mkdocs mkdocs-material
- name: Deploy to GitHub Pages
run: |
mkdocs gh-deploy --force