[release/public-v3.0.0]: Final Documentation Update for v3.0.0 release #654
This file contains hidden or 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: Land DA automatic documentation build | |
| on: | |
| push: | |
| branches: [ "develop" ] | |
| pull_request: | |
| branches: [ "develop" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| pip install Sphinx==7.4.7 | |
| pip install sphinx-rtd-theme | |
| pip install sphinxcontrib-bibtex | |
| - name: Build HTML | |
| run: | | |
| cd doc | |
| make clean && make html | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: html-docs | |
| path: doc/build/html/ |