From f983a1aa6b26ce5c6b2c8de0ccbefb2dbd8f41e8 Mon Sep 17 00:00:00 2001 From: Kai Hudalla Date: Tue, 26 Nov 2024 16:03:55 +0100 Subject: [PATCH] [#3664] Update to Hugo 0.123.8 --- jenkins/Hono-Website-Pipeline-Declarative.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jenkins/Hono-Website-Pipeline-Declarative.groovy b/jenkins/Hono-Website-Pipeline-Declarative.groovy index b00406a5e9..07194a0d1b 100644 --- a/jenkins/Hono-Website-Pipeline-Declarative.groovy +++ b/jenkins/Hono-Website-Pipeline-Declarative.groovy @@ -40,7 +40,7 @@ pipeline { memory: "512Mi" cpu: "1" - name: "hugo" - image: "cibuilds/hugo:0.102" + image: "cibuilds/hugo:0.123.8" command: - cat tty: true @@ -114,7 +114,7 @@ pipeline { # removing them, so they don't get deployed. rm themes/hugo-universal-theme/static/img/* echo "building home page..." - hugo -v -d "${WEBSITE_REPO_DIR}" + hugo build -d "${WEBSITE_REPO_DIR}" ''' } } @@ -170,7 +170,7 @@ pipeline { sh '''#!/bin/bash echo "building documentation..." cd "${DOC_ASSEMBLY_DIR}" - hugo -v -d "${WEBSITE_REPO_DIR}/docs" --config config.toml,config_version.toml + hugo build -d "${WEBSITE_REPO_DIR}/docs" --config config.toml,config_version.toml ''' } }