Skip to content

MCP connection manager with reconnect support #6

MCP connection manager with reconnect support

MCP connection manager with reconnect support #6

Workflow file for this run

name: Deploy MkDocs site to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write
pages: write
id-token: write
jobs:
deploy:
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.11"
- name: Install MkDocs + Material theme
run: |
pip install mkdocs-material
- name: Install additional plugins
run: |
pip install -r docs/requirements.txt
- name: Deploy to GitHub Pages
run: |
cd docs
mkdocs gh-deploy --force