mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-02 14:26:33 +00:00
Co-authored-by: Kallinteris Andreas <30759571+Kallinteris-Andreas@users.noreply.github.com> Co-authored-by: Jet <38184875+jjshoots@users.noreply.github.com> Co-authored-by: Omar Younis <42100908+younik@users.noreply.github.com>
51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
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@v3
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.9'
|
|
|
|
- name: Install dependencies
|
|
run: pip install -r docs/requirements.txt
|
|
|
|
- name: Install Gymnasium
|
|
run: pip install .[box2d,mujoco,jax] torch
|
|
|
|
- name: Build Envs Docs
|
|
run: python docs/_scripts/gen_mds.py && python docs/_scripts/gen_envs_display.py
|
|
|
|
- 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/move_404.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
|