1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-04 22:14:28 +02:00

17 lines
428 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
# build
mkdocs build -f www/mkdocs.yml