Skip to content

Update mkdocs.yml

Update mkdocs.yml #5

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main # or the branch you want to deploy from
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x' # specify the Python version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material
- name: Build and deploy
run: |
mkdocs build
mkdocs gh-deploy --force