tidy formatting #122
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: Sphinx build | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt install -y software-properties-common | |
sudo add-apt-repository -y ppa:ubuntugis/ppa | |
sudo apt -y update | |
sudo apt install -y libgdal-dev gdal-bin python3-pip git python3-opencv | |
export CPLUS_INCLUDE_PATH=/usr/include/gdal | |
export C_INCLUDE_PATH=/usr/include/gdal | |
pip3 install --upgrade requests | |
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu \ | |
opencv-python wandb numpy==1.23 sphinx | |
python3 -m pip install 'git+https://github.com/facebookresearch/detectron2.git' | |
pip install --upgrade Pygments | |
pip install . | |
pip install sphinx_rtd_theme nbsphinx | |
sphinx-apidoc -f -o ./docs/source/ detectree2/ | |
sphinx-build -b html docs/source/ docs/build/html | |
# - name: Build HTML | |
# uses: ammaraskar/[email protected] | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: html-docs | |
path: docs/build/html/ | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: github.ref == 'refs/heads/master' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/build/html |