Merge pull request #40 from Farama-Foundation/version-update #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Docs | |
on: | |
push: | |
branches: [main] | |
permissions: | |
contents: write | |
jobs: | |
docs: | |
name: Generate Website | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: pip install -r docs/requirements.txt && python setup.py install | |
- name: Install cmake | |
run: python -m pip install --upgrade pip && pip install cmake | |
- name: Install package | |
run: pip install . && ls -a && mv build/lib.linux-x86_64-3.9/magent2/libmagent.so magent2/libmagent.so | |
- name: Build Envs Docs | |
run: python docs/scripts/gen_mds.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/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 | |
clean-exclude: | | |
*.*.*/ |