From 9502112e86f7369c35da435d7bf517ac470eb6dd Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 5 Mar 2022 16:59:43 +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 14a1203..5cd4ab2 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -44,9 +44,9 @@ local PipelineDocs = { }, { name: 'testbuild', - image: 'thegeeklab/hugo:0.91.0', + image: 'thegeeklab/hugo:0.93.2', commands: [ - 'hugo -b http://localhost/', + 'hugo --panicOnWarning -b http://localhost/', ], }, { @@ -61,9 +61,9 @@ local PipelineDocs = { }, { name: 'build', - image: 'thegeeklab/hugo:0.91.0', + image: 'thegeeklab/hugo:0.93.2', commands: [ - 'hugo', + 'hugo --panicOnWarning', ], }, { diff --git a/.drone.yml b/.drone.yml index 3662120..4f8b7c3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -35,9 +35,9 @@ steps: NPM_CONFIG_LOGLEVEL: error - name: testbuild - image: thegeeklab/hugo:0.91.0 + image: thegeeklab/hugo:0.93.2 commands: - - hugo -b http://localhost/ + - hugo --panicOnWarning -b http://localhost/ - name: link-validation image: thegeeklab/link-validator @@ -47,9 +47,9 @@ steps: LINK_VALIDATOR_BASE_DIR: public - name: build - image: thegeeklab/hugo:0.91.0 + image: thegeeklab/hugo:0.93.2 commands: - - hugo + - hugo --panicOnWarning - name: beautify image: node:lts-alpine @@ -87,6 +87,6 @@ trigger: --- kind: signature -hmac: 5b5951dd92dad9fd673283f1bb0412856a5bd6e34af58b966d7e008c8ff319b4 +hmac: a7ee35a74693c4b699b48bf56f3acba47507d47178d6396a345878ff64cfaa13 ...