Skip to content

Fix wrong length value for the initial value of vector3 (#213) #649

Fix wrong length value for the initial value of vector3 (#213)

Fix wrong length value for the initial value of vector3 (#213) #649

Workflow file for this run

name: docs
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
# Check out source
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.10"
# Build documentation
- name: Building documentation
run: |
pip install uv
uv pip install --system -e ".[dev]"
uv pip install --system -r docs/requirements.txt
sphinx-build docs/source docs/build -b dirhtml
# Deploy
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build
cname: viser.studio
if: github.event_name != 'pull_request'