Skip to content

fix(mcp): emit the hint keys ophis reads (#4) #12

fix(mcp): emit the hint keys ophis reads (#4)

fix(mcp): emit the hint keys ophis reads (#4) #12

Workflow file for this run

# docs.yml — regenerate the command reference and publish the MkDocs site to gh-pages.
# Auto-runs when the docs, the command source, or the mkdocs config change; also manually
# dispatchable so the very first deploy (which creates the gh-pages branch) can be kicked off.
name: Docs
on:
push:
branches: [main]
paths: ['docs/**', 'commands/**', 'mkdocs.yml']
workflow_dispatch:
permissions:
contents: write # gh-pages push
env:
GOOGLE_ANALYTICS_KEY: ${{ vars.GOOGLE_ANALYTICS_KEY }}
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with: { go-version: stable }
- uses: actions/setup-python@v7
with: { python-version: '3.x' }
- run: pip install mkdocs-material
- run: make docs-gen
- run: mkdocs gh-deploy --force