Skip to content

remove docs-deploy from publish.yml and create a separate docs.yml th… #1

remove docs-deploy from publish.yml and create a separate docs.yml th…

remove docs-deploy from publish.yml and create a separate docs.yml th… #1

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
jobs:
docs-deploy:
name: Deploy docs
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install docs dependencies
run: pip install mkdocs-material pymdown-extensions
- name: Deploy docs
run: mkdocs gh-deploy --force