From eeb421f20944d28b291ffc41c122afee8a415b1a Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 3 Jun 2020 12:24:17 +0200 Subject: [PATCH] fix hugo base dir --- .drone.jsonnet | 4 ++-- .drone.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index b319ced..7664e02 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -248,7 +248,7 @@ local PipelineDocs = { name: 'testbuild', image: 'klakegg/hugo:0.72.0-ext-alpine', commands: [ - 'hugo-official -s exampleSite/ -b http://localhost/', + 'hugo-official -s docs/ -b http://localhost/', ], }, { @@ -265,7 +265,7 @@ local PipelineDocs = { name: 'build', image: 'klakegg/hugo:0.72.0-ext-alpine', commands: [ - 'hugo-official -s exampleSite/', + 'hugo-official -s docs/', ], }, { diff --git a/.drone.yml b/.drone.yml index 15411ac..d368674 100644 --- a/.drone.yml +++ b/.drone.yml @@ -365,7 +365,7 @@ steps: - name: testbuild image: klakegg/hugo:0.72.0-ext-alpine commands: - - hugo-official -s exampleSite/ -b http://localhost/ + - hugo-official -s docs/ -b http://localhost/ - name: link-validation image: xoxys/link-validator @@ -377,7 +377,7 @@ steps: - name: build image: klakegg/hugo:0.72.0-ext-alpine commands: - - hugo-official -s exampleSite/ + - hugo-official -s docs/ - name: beautify image: node:lts-alpine @@ -472,6 +472,6 @@ depends_on: --- kind: signature -hmac: b12b93a922de8a4cacdce2ac94f572d498251129c1eea5477e7a029a29dd4c90 +hmac: 3336b9f035e12dcbf745f4d8251e8fb25f8d77fe29c56fecb2e8988efdac4a10 ...