File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 name : Run Tests
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v4
14+ - uses : actions/checkout@v5
1515
1616 - name : Install uv
1717 uses : astral-sh/setup-uv@v5
Original file line number Diff line number Diff line change 1515
1616 steps :
1717 - name : Checkout
18- uses : actions/checkout@v4
18+ uses : actions/checkout@v5
1919
2020 - name : Set up QEMU
2121 uses : docker/setup-qemu-action@v3
Original file line number Diff line number Diff line change 1+ name : Deploy Documentation
2+ on :
3+ push :
4+ branches : [main]
5+ workflow_dispatch :
6+
7+ permissions :
8+ contents : read
9+ pages : write
10+ id-token : write
11+
12+ jobs :
13+ deploy :
14+ runs-on : ubuntu-latest
15+ environment :
16+ name : github-pages
17+ url : ${{ steps.deployment.outputs.page_url }}
18+ steps :
19+ - uses : actions/checkout@v5
20+ - uses : actions/setup-python@v5
21+ with :
22+ python-version : ' 3.12'
23+ - run : pip install mkdocs mkdocs-material mkdocstrings[python]
24+ - run : mkdocs build
25+ - uses : actions/configure-pages@v5
26+ - uses : actions/upload-pages-artifact@v3
27+ with :
28+ path : ./site
29+ - id : deployment
30+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 99 name : Build distribution
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v4
12+ - uses : actions/checkout@v5
1313 with :
1414 persist-credentials : false
1515 - name : Install uv
Original file line number Diff line number Diff line change 1+ # deepset MCP
Original file line number Diff line number Diff line change 1+ # API Reference
2+
3+ ::: deepset_mcp.api
Original file line number Diff line number Diff line change 1+ site_name : deepset MCP Documentation
2+ theme :
3+ name : material
4+ features :
5+ - navigation.sections
6+ - navigation.expand
7+ - search.suggest
8+
9+ plugins :
10+ - search
11+ - mkdocstrings :
12+ handlers :
13+ python :
14+ options :
15+ docstring_style : sphinx # or numpy/sphinx
16+ show_source : false
17+
18+ nav :
19+ - Home : index.md
20+ - API Reference : reference.md
You can’t perform that action at this time.
0 commit comments