Skip to content

Lazily import locomotion envs to prevent ModuleNotFoundError when lab… #31

Lazily import locomotion envs to prevent ModuleNotFoundError when lab…

Lazily import locomotion envs to prevent ModuleNotFoundError when lab… #31

name: Build main branch documentation website
on:
push:
branches: [main]
permissions:
contents: write
jobs:
docs:
name: Generate Website
runs-on: ubuntu-latest
env:
SPHINX_GITHUB_CHANGELOG_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies for doc
run: pip install -r docs/requirements.txt
- name: Install shimmy and dependencies
run: pip install -e .[all]
- name: Build
run: sphinx-build -b dirhtml -v docs _build
- name: Move 404
run: mv _build/404/index.html _build/404.html
- name: Update 404 links
run: python docs/_scripts/move404.py _build/404.html
- name: Remove .doctrees
run: rm -r _build/.doctrees
- name: Upload to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: _build
target-folder: main
clean: false