1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-19 20:57:53 +02:00

17 lines
460 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
# unshallow (needed for the rss plugin)
git fetch --prune --tags --unshallow
# install
pip install --upgrade pip
pip install -U mkdocs-material mkdocs-redirects mkdocs-minify-plugin mkdocs-include-markdown-plugin lunr mkdocs-rss-plugin
# prepare
version="$(cat ./www/docs/static/latest)"
sed -s'' -i "s/__VERSION__/$version/g" www/docs/install.md www/docs/customization/index.md
# build
mkdocs build -f www/mkdocs.yml