Skip to content

Update mkdocs.yml

Update mkdocs.yml #2

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main
pull_request:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Cache dependencies
uses: actions/cache@v3
with:
key: mkdocs-material-${{ github.ref }}
path: .cache
restore-keys: |
mkdocs-material-
- name: Install dependencies
run: |
pip install mkdocs-material
pip install mkdocs-minify-plugin
pip install mkdocs-redirects
- name: Build and deploy
run: mkdocs gh-deploy --force