mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
7f731ebca0
* docs(deps): bump mkdocs-material to 8.0.2 * docs(deps): bump mkdocs-material to 8.0.3 * chore: add default version of docs * feat: add version warning * fix: remove version warning * docs(deps): bump mkdocs-material to 8.0.5 * added code annotation feature We can introduce new annotation with new PRs in the future. I'd advise against overhauling all code blocks with this feature in this PR - this PR should just introduce the feature. * docs(deps): bump mkdocs-material to 8.1.0 * fix: remove unnecessary default value re-add if version warning gets a thing in the future. See https://github.com/docker-mailserver/docker-mailserver/pull/2311#issuecomment-991805830 Co-authored-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com>
22 lines
720 B
Bash
Executable file
22 lines
720 B
Bash
Executable file
#!/bin/bash
|
|
set -ex
|
|
|
|
# PWD should be at the project docs/ folder.
|
|
# `--user` is required for build output file ownership to match the CI user,
|
|
# instead of the internal root user of the container.
|
|
# `build --strict` ensures the build fails when any warnings are omitted.
|
|
docker run \
|
|
--rm \
|
|
--user "$(id -u):$(id -g)" \
|
|
--volume "${PWD}:/docs" \
|
|
--name "build-docs" \
|
|
squidfunk/mkdocs-material:8.1.0 build --strict
|
|
|
|
# Remove unnecessary build artifacts: https://github.com/squidfunk/mkdocs-material/issues/2519
|
|
# site/ is the build output folder.
|
|
cd site
|
|
find . -type f -name '*.min.js.map' -delete -o -name '*.min.css.map' -delete
|
|
rm sitemap.xml.gz
|
|
rm assets/images/favicon.png
|
|
rm -r assets/javascripts/lunr
|