Skip to content

add isVisible and castsShadows to renderable #148

add isVisible and castsShadows to renderable

add isVisible and castsShadows to renderable #148

Workflow file for this run

name: Sphinx build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
sudo apt-get update
pip install sphinx sphinx_rtd_theme
- name: Build HTML
run: |
sphinx-build source/ build/
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: html-docs
path: build/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build/