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