chore(deps): update dependency mkdocs-material to v9.5.44 #439
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: Generate docs | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
pages: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
docs: | |
# { ref: <branch/tag name>, name: <docs drop down entry> } | |
- { ref: main, name: latest } | |
- { ref: v0.2.1, name: 0.2.1 } | |
steps: | |
- uses: actions/checkout@v4 | |
if: ${{ matrix.docs.ref == 'main' }} | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ matrix.docs.ref }} | |
if: ${{ matrix.docs.ref != 'main' }} | |
- uses: bazelbuild/setup-bazelisk@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Generate docs | |
run: bash ./build-docs.sh | |
env: | |
CI: 1 | |
working-directory: ${{ github.workspace }}/docs | |
- run: bazelisk shutdown | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: "${{ matrix.docs.name }}" | |
path: ${{ github.workspace }}/docs/site/ | |
if-no-files-found: error | |
if: ${{ github.event_name != 'pull_request' }} | |
publish: | |
needs: pages | |
if: ${{ github.event_name != 'pull_request' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
path: ${{ github.workspace }}/docs/generated | |
- name: Inspect docs site directory structure | |
run: find ${{ github.workspace }}/docs/generated -maxdepth 2 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- run: | | |
pip install packaging==23.* | |
python versioning.py generated/ | |
working-directory: ${{ github.workspace }}/docs | |
- uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/generated | |
force_orphan: true |