build and deploy docs #43
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: build and deploy docs | |
# build the documentation whenever there are new commits on main | |
on: | |
workflow_run: | |
workflows: ["build and test GPU"] | |
branches: | |
- master | |
types: | |
- completed | |
# security: restrict permissions for CI jobs. | |
permissions: | |
contents: read | |
jobs: | |
# Build the documentation and upload the static HTML files as an artifact. | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Add conda to system path | |
run: | | |
# $CONDA is an environment variable pointing to the root of the miniconda directory | |
echo $CONDA/bin >> $GITHUB_PATH | |
- name: Install dependencies | |
run: | | |
conda install -c conda-forge -y python=3.9 | |
conda env update --file conda/fd-gpu.yml --name base | |
- name: Install package | |
run: $CONDA/bin/pip install -f https://www.paddlepaddle.org.cn/whl/fastdeploy.html -e . | |
- name: Build docs | |
run: | | |
export LD_LIBRARY_PATH=$CONDA/lib/:$LD_LIBRARY_PATH | |
export PDOC_ALLOW_EXEC=1 | |
$CONDA/bin/pdoc -o docs/ basketballdetector | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: docs/ | |
# Deploy the artifact to GitHub pages. | |
# This is a separate job so that only actions/deploy-pages has the necessary permissions. | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- id: deployment | |
uses: actions/deploy-pages@v4 |