deleting providers should delete associated model configs #101
Workflow file for this run
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
| name: build_docs | |
| # Disable for now while the repo is private | |
| # on: | |
| # push: | |
| # branches: | |
| # - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: astral-sh/setup-uv@v6 | |
| with: | |
| version: "0.9.5" | |
| - run: uv python install | |
| - run: uv sync --group docs | |
| - run: uv run mkdocs gh-deploy --force --clean --verbose |