Skip to content

Restyle site to match simple-blog aesthetic #78

Restyle site to match simple-blog aesthetic

Restyle site to match simple-blog aesthetic #78

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# pip install mkdocs-material mkdocs-awesome-pages-plugin mkdocs-git-revision-date-localized-plugin mkdocs-minify-plugin pymdown-extensions pillow cairosvg
pip install -r requirements.txt
- name: Deploy
run: mkdocs gh-deploy --force