Skip to content

Deploying to GitHub Pages #16

Deploying to GitHub Pages

Deploying to GitHub Pages #16

Workflow file for this run

name: Documentation Deployment
run-name: Deploying to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install --upgrade pip
- run: pip install mkdocs pymdown-extensions mkdocs-material
- run: mkdocs gh-deploy --force