Skip to content

Create breadcrumbs.html #584

Create breadcrumbs.html

Create breadcrumbs.html #584

Workflow file for this run

name: Deploy MkDocs
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material mkdocs
- name: Deploy MkDocs to GitHub Pages
run: mkdocs gh-deploy --force