From 82d363a68cae8d005cce3801a7d231e9af8cf240 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 6 May 2021 22:56:08 +0200 Subject: [PATCH] switch to own hugo ci image --- .drone.jsonnet | 8 ++++---- .drone.yml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 6f4b9e3..9f7eb55 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -334,9 +334,9 @@ local PipelineDocs = { }, { name: 'testbuild', - image: 'klakegg/hugo:0.83.1-ext-alpine-ci', + image: 'thegeeklab/hugo:0.83.1', commands: [ - 'hugo-official -s docs/ -b http://localhost/', + 'hugo -s docs/ -b http://localhost/', ], }, { @@ -351,9 +351,9 @@ local PipelineDocs = { }, { name: 'build', - image: 'klakegg/hugo:0.83.1-ext-alpine-ci', + image: 'thegeeklab/hugo:0.83.1', commands: [ - 'hugo-official -s docs/', + 'hugo -s docs/', ], }, { diff --git a/.drone.yml b/.drone.yml index 2c19dc7..6dd6f75 100644 --- a/.drone.yml +++ b/.drone.yml @@ -494,9 +494,9 @@ steps: NPM_CONFIG_LOGLEVEL: error - name: testbuild - image: klakegg/hugo:0.83.1-ext-alpine-ci + image: thegeeklab/hugo:0.83.1 commands: - - hugo-official -s docs/ -b http://localhost/ + - hugo -s docs/ -b http://localhost/ - name: link-validation image: thegeeklab/link-validator @@ -506,9 +506,9 @@ steps: LINK_VALIDATOR_BASE_DIR: docs/public - name: build - image: klakegg/hugo:0.83.1-ext-alpine-ci + image: thegeeklab/hugo:0.83.1 commands: - - hugo-official -s docs/ + - hugo -s docs/ - name: beautify image: node:lts-alpine @@ -644,6 +644,6 @@ depends_on: --- kind: signature -hmac: 1a3c02e976a4a552c4253dad73027fb2cd25e7a91d51d86eb125211b573cddee +hmac: 004d8bf66e7e19cba40f49afc42c3c1a70273af99238afc0476a7bc47ccb4441 ...