Skip to content

feat: add provider/action filtering and hybrid BM25 + TF-IDF search (… #41

feat: add provider/action filtering and hybrid BM25 + TF-IDF search (…

feat: add provider/action filtering and hybrid BM25 + TF-IDF search (… #41

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install uv
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
with:
python-version: "3.11"
enable-cache: true
- name: Install all dependencies
run: uv sync --all-extras
- name: Build documentation
run: |
uv run scripts/build_docs.py
uv run mkdocs build
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site