Skip to content

Merge feature/buyer-slash-commands: Add 10 MCP prompts + docs #36

Merge feature/buyer-slash-commands: Add 10 MCP prompts + docs

Merge feature/buyer-slash-commands: Add 10 MCP prompts + docs #36

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [main]
paths:
- 'docs/**'
- 'mkdocs.yml'
- 'src/ad_buyer/interfaces/api/main.py'
workflow_dispatch:
permissions:
contents: write
pages: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -e ".[docs]"
- name: Generate OpenAPI JSON
run: python scripts/generate_openapi.py
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force