Skip to content

Merge pull request #194 from developmentseed/patch/fix-type-hints #97

Merge pull request #194 from developmentseed/patch/fix-type-hints

Merge pull request #194 from developmentseed/patch/fix-type-hints #97

Workflow file for this run

name: Publish docs via GitHub Pages
on:
push:
branches:
- main
paths:
# Only rebuild website when docs have changed
- 'README.md'
- 'CHANGES.md'
- 'CONTRIBUTING.md'
- 'docs/**'
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.9.*"
enable-cache: true
- name: Deploy docs
run: uv run --group docs mkdocs gh-deploy --force -f docs/mkdocs.yml