Version updated from 0.28.1 to 0.28.2 #104
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: Deploy final documentation | |
on: | |
push: | |
branches: [ "master" ] | |
permissions: | |
contents: read | |
pull-requests: write | |
pages: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python and Git | |
uses: ./.github/actions/setup-python-and-git | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
git pull --all | |
uv sync -p 3.12 --group docs | |
- name: Build and deploy documentation | |
run: | | |
uv run mkdocs gh-deploy --strict |