mirror of
https://github.com/NVIDIA-NeMo/DataDesigner
synced 2026-05-24 09:48:29 +00:00
19 lines
440 B
YAML
19 lines
440 B
YAML
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
|