The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

48 lines
1.2 KiB

4 weeks ago
  1. name: Build main branch documentation website
  2. on:
  3. push:
  4. branches: [master]
  5. permissions:
  6. contents: write
  7. jobs:
  8. docs:
  9. name: Generate Website
  10. runs-on: ubuntu-latest
  11. env:
  12. SPHINX_GITHUB_CHANGELOG_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  13. steps:
  14. - uses: actions/checkout@v3
  15. - uses: actions/setup-python@v4
  16. with:
  17. python-version: '3.9'
  18. - name: Install dependencies
  19. run: pip install -r docs/requirements.txt
  20. - name: Register Envs
  21. run: pip install -e .
  22. - name: Build Envs Docs
  23. run: python docs/_scripts/gen_env_docs.py
  24. - name: Build Envs Display
  25. run: python docs/_scripts/gen_envs_display.py
  26. - name: Build
  27. run: sphinx-build -b dirhtml -v docs _build
  28. - name: Move 404
  29. run: mv _build/404/index.html _build/404.html
  30. - name: Update 404 links
  31. run: python docs/_scripts/move_404.py _build/404.html
  32. - name: Remove .doctrees
  33. run: rm -r _build/.doctrees
  34. - name: Upload to GitHub Pages
  35. uses: JamesIves/github-pages-deploy-action@v4
  36. with:
  37. folder: _build
  38. target-folder: main
  39. clean: false