File: build-docs.sh

package info (click to toggle)
python-typing-inspection 0.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 384 kB
  • sloc: python: 1,110; makefile: 33; sh: 6
file content (13 lines) | stat: -rwxr-xr-x 392 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

# This script is used to build the documentation on CloudFlare Pages, this is just used for build previews
# A different script with the same name exists on the `docs-site` branch (where pre-built docs live).

set -e
set -x

curl -LsSf https://astral.sh/uv/install.sh | sh
uv python install 3.13
uv sync --python 3.13 --frozen --group docs

uv run --no-sync mkdocs build