fix(mcp): emit the hint keys ophis reads (#4) #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |