- Refactor mkdocs.yml with new project name and simplified configuration - Update GitHub Actions workflow to use MkDocs Material deployment - Add new configuration files for Claude Desktop - Reorganize documentation navigation and structure - Update CSS and JavaScript references
25 lines
586 B
YAML
25 lines
586 B
YAML
name: Deploy MkDocs
|
|
on:
|
|
push:
|
|
branches:
|
|
- main # or master, depending on your default branch
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.x'
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install mkdocs-material
|
|
pip install mkdocs-git-revision-date-localized-plugin
|
|
pip install mkdocstrings[python]
|
|
- name: Deploy
|
|
run: mkdocs gh-deploy --force |