From de4ec94d1fa3f14fdde64a4d840eafba6781bb5a Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 5 Mar 2022 16:57:05 +0100 Subject: [PATCH] ci: update hugo to v0.93.2 --- .drone.jsonnet | 8 ++++---- .drone.yml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index a40c640..6d47220 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -341,9 +341,9 @@ local PipelineDocs = { }, { name: 'testbuild', - image: 'thegeeklab/hugo:0.91.0', + image: 'thegeeklab/hugo:0.93.2', commands: [ - 'hugo -s docs/ -b http://localhost/', + 'hugo --panicOnWarning -s docs/ -b http://localhost/', ], }, { @@ -358,9 +358,9 @@ local PipelineDocs = { }, { name: 'build', - image: 'thegeeklab/hugo:0.91.0', + image: 'thegeeklab/hugo:0.93.2', commands: [ - 'hugo -s docs/', + 'hugo --panicOnWarning -s docs/', ], }, { diff --git a/.drone.yml b/.drone.yml index 318f4bc..3236dfa 100644 --- a/.drone.yml +++ b/.drone.yml @@ -499,9 +499,9 @@ steps: NPM_CONFIG_LOGLEVEL: error - name: testbuild - image: thegeeklab/hugo:0.91.0 + image: thegeeklab/hugo:0.93.2 commands: - - hugo -s docs/ -b http://localhost/ + - hugo --panicOnWarning -s docs/ -b http://localhost/ - name: link-validation image: thegeeklab/link-validator @@ -511,9 +511,9 @@ steps: LINK_VALIDATOR_BASE_DIR: docs/public - name: build - image: thegeeklab/hugo:0.91.0 + image: thegeeklab/hugo:0.93.2 commands: - - hugo -s docs/ + - hugo --panicOnWarning -s docs/ - name: beautify image: node:lts-alpine @@ -649,6 +649,6 @@ depends_on: --- kind: signature -hmac: 1841bc8bcbf056bae7577aaa9a11fb3f1627777745155ce86f48ff87d6d812de +hmac: c075be1e8c2c431a5b20a49c81c5494829d06335aea8b4894d546bf1e6bece74 ...