Build Docs #90
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: Build Docs | |
| on: | |
| schedule: | |
| - cron: '0 7 * * *' # UTC time | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'Docs version (default: nightly)' | |
| required: false | |
| default: 'nightly' | |
| jobs: | |
| build-and-deploy-docs: | |
| name: Build and deploy docs | |
| runs-on: [self-hosted, build-docs] | |
| if: github.repository == 'nunchaku-ai/nunchaku' && (github.event_name != 'workflow_dispatch' || github.actor == 'lmxyy') | |
| env: | |
| DOC_VERSION: ${{ github.event.inputs.version || 'nightly' }} | |
| steps: | |
| - name: Checkout main branch | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| ref: main | |
| submodules: true | |
| - name: Set up Python | |
| run: | | |
| which python | |
| echo "Setting up Python with Conda" | |
| conda create -n nunchaku-docs python=3.12 -y | |
| - name: Install dependencies | |
| run: | | |
| source $(conda info --base)/etc/profile.d/conda.sh | |
| conda activate nunchaku-docs || { echo "Failed to activate conda env"; exit 1; } | |
| which python | |
| pip install uv | |
| conda install -c conda-forge gxx=11 gcc=11 | |
| echo "Installing dependencies" | |
| uv pip install -e ".[dev,docs]" | |
| - name: Build docs | |
| run: | | |
| source $(conda info --base)/etc/profile.d/conda.sh | |
| conda activate nunchaku-docs || { echo "Failed to activate conda env"; exit 1; } | |
| which python | |
| cd docs | |
| make html | |
| - name: Deploy docs | |
| run: | | |
| echo "${{ secrets.DO_SSH_KEY }}" > ./id_rsa | |
| chmod 600 id_rsa | |
| source $(conda info --base)/etc/profile.d/conda.sh | |
| conda activate nunchaku-docs || { echo "Failed to activate conda env"; exit 1; } | |
| which python | |
| rsync -avz --delete docs/build/html/ ${{ secrets.DO_USER }}@${{ secrets.DO_HOST }}:${{ secrets.DO_DOCS_ROOT }}/nunchaku-${{ env.DOC_VERSION }} | |
| rm id_rsa | |
| env: | |
| RSYNC_RSH: "ssh -o StrictHostKeyChecking=no -i id_rsa" |