From 28784c351aa5dafd6bd33a007a7f901d82ffbb05 Mon Sep 17 00:00:00 2001 From: grafanabot Date: Wed, 24 Jan 2024 07:00:52 +0000 Subject: [PATCH] Update `make docs` procedure --- docs/make-docs | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/make-docs b/docs/make-docs index 25176a37f..d5d861ca8 100755 --- a/docs/make-docs +++ b/docs/make-docs @@ -6,7 +6,13 @@ # [Semantic versioning](https://semver.org/) is used to help the reader identify the significance of changes. # Changes are relevant to this script and the support docs.mk GNU Make interface. # - +# ## 5.2.0 (2024-01-18) +# +# ### Changed +# +# - Updated `make vale` to use latest Vale style and configuration. +# - Updated `make vale` to use platform appropriate image. +# # ## 5.1.2 (2023-11-08) # # ### Added @@ -704,14 +710,14 @@ case "${image}" in "${PODMAN}" run \ --init \ --interactive \ - --platform linux/amd64 \ --rm \ + --workdir /etc/vale \ --tty \ ${volumes} \ "${DOCS_IMAGE}" \ "--minAlertLevel=${VALE_MINALERTLEVEL}" \ - --config=/etc/vale/.vale.ini \ - --output=line \ + '--glob=*.md' \ + --output=/etc/vale/rdjsonl.tmpl \ /hugo/content/docs | sed "s#$(proj_dst "${proj}")#sources#" ;; *)