From 4b240dc2b6989488aef20546bcab3096928742c8 Mon Sep 17 00:00:00 2001 From: Thijs Lemmens Date: Fri, 15 Sep 2023 09:51:04 +0200 Subject: [PATCH] XENFRED-4897 Switch to cloudsmith image for manuals-markdown-splitter --- build-websites.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-websites.sh b/build-websites.sh index 19d46ea..db1668a 100755 --- a/build-websites.sh +++ b/build-websites.sh @@ -3,7 +3,7 @@ set -e scriptPath="$( dirname "${BASH_SOURCE[0]}" )" # cd to the directory containg the script cd "$scriptPath" MARKDOWNTOPDF_VERSION=600b339 -MARKDOWNTOWEBSITE_VERSION=1.0.0-SNAPSHOT-202010231216-2 +MARKDOWNTOWEBSITE_VERSION=1.0.2 WEIGHT=0 @@ -44,7 +44,7 @@ split_manual() { WEIGHT=$[$WEIGHT + 1] mkdir -p "build/product/$productName" tar tf "build/normalized/$productName/$versionName.tar" - cat "build/normalized/$productName/$versionName.tar" | docker run --rm -i hub.xenit.eu/private/xenit-manuals-markdown-splitter:$MARKDOWNTOWEBSITE_VERSION normalized.md "target-path=$versionName" "weight=$WEIGHT" > "build/normalized/$productName/$versionName-out.tar" + cat "build/normalized/$productName/$versionName.tar" | docker run --rm -i private.docker.xenit.eu/customer/xenit/xenit-manuals-markdown-splitter:$MARKDOWNTOWEBSITE_VERSION normalized.md "target-path=$versionName" "weight=$WEIGHT" > "build/normalized/$productName/$versionName-out.tar" sync tar xf "build/normalized/$productName/$versionName-out.tar" -C "build/product/$productName" }