build: change deprecated action (#626) #56
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: Documentation Building | |
on: | |
release: | |
types: [published] | |
push: | |
branches: | |
- main | |
jobs: | |
docs: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.13" | |
- name: Set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
version: "0.5.4" | |
enable-cache: true | |
- name: Install dependencies | |
run: uv sync --all-extras | |
- name: Fetch gh pages | |
run: git fetch origin gh-pages --depth=1 | |
- name: Build release docs | |
run: uv run python tools/build_docs.py docs-build | |
if: github.event_name == 'release' | |
- name: Build dev docs | |
run: uv run python tools/build_docs.py docs-build | |
if: github.event_name == 'push' | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: docs-build |