2023-12-26 13:18:46 -03:00
|
|
|
#!/usr/bin/env bash
|
2022-12-29 11:11:16 -03:00
|
|
|
set -euo pipefail
|
|
|
|
|
2023-09-14 13:53:40 -03:00
|
|
|
# unshallow (needed for the rss plugin)
|
|
|
|
git fetch --prune --tags --unshallow
|
|
|
|
|
2022-12-29 11:11:16 -03:00
|
|
|
# install
|
|
|
|
pip install --upgrade pip
|
2023-09-14 13:53:40 -03:00
|
|
|
pip install -U mkdocs-material mkdocs-redirects mkdocs-minify-plugin mkdocs-include-markdown-plugin lunr mkdocs-rss-plugin
|
2022-12-29 11:11:16 -03:00
|
|
|
|
|
|
|
# prepare
|
2022-12-29 14:55:45 -03:00
|
|
|
version="$(cat ./www/docs/static/latest)"
|
2024-07-17 10:56:36 -03:00
|
|
|
sed -s'' -i "s/__VERSION__/$version/g" www/docs/install.md www/docs/customization/index.md
|
2022-12-29 11:11:16 -03:00
|
|
|
|
|
|
|
# build
|
|
|
|
mkdocs build -f www/mkdocs.yml
|