From 38d02b2f13f16a80d21fe4be25650a1c6bf3e1f8 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 3 Jun 2020 12:10:40 +0200 Subject: [PATCH] update hugo to v0.72.0 --- .drone.jsonnet | 4 ++-- .drone.yml | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 29665e8..b319ced 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -246,7 +246,7 @@ local PipelineDocs = { }, { name: 'testbuild', - image: 'klakegg/hugo:0.59.1-ext-alpine', + image: 'klakegg/hugo:0.72.0-ext-alpine', commands: [ 'hugo-official -s exampleSite/ -b http://localhost/', ], @@ -263,7 +263,7 @@ local PipelineDocs = { }, { name: 'build', - image: 'klakegg/hugo:0.59.1-ext-alpine', + image: 'klakegg/hugo:0.72.0-ext-alpine', commands: [ 'hugo-official -s exampleSite/', ], diff --git a/.drone.yml b/.drone.yml index 67ffe0a..15411ac 100644 --- a/.drone.yml +++ b/.drone.yml @@ -338,6 +338,12 @@ concurrency: limit: 1 steps: +- name: assets + image: byrnedo/alpine-curl + commands: + - mkdir -p docs/themes/hugo-geekdoc/ + - curl -L https://github.com/xoxys/hugo-geekdoc/releases/latest/download/hugo-geekdoc.tar.gz | tar -xz -C docs/themes/hugo-geekdoc/ --strip-components=1 + - name: markdownlint image: node:lts-alpine commands: @@ -356,14 +362,8 @@ steps: FORCE_COLOR: true NPM_CONFIG_LOGLEVEL: error -- name: assets - image: byrnedo/alpine-curl - commands: - - mkdir -p docs/themes/hugo-geekdoc/ - - curl -L https://github.com/xoxys/hugo-geekdoc/releases/latest/download/hugo-geekdoc.tar.gz | tar -xz -C docs/themes/hugo-geekdoc/ --strip-components=1 - - name: testbuild - image: klakegg/hugo:0.59.1-ext-alpine + image: klakegg/hugo:0.72.0-ext-alpine commands: - hugo-official -s exampleSite/ -b http://localhost/ @@ -375,7 +375,7 @@ steps: LINK_VALIDATOR_BASE_DIR: docs/public - name: build - image: klakegg/hugo:0.59.1-ext-alpine + image: klakegg/hugo:0.72.0-ext-alpine commands: - hugo-official -s exampleSite/ @@ -472,6 +472,6 @@ depends_on: --- kind: signature -hmac: 61bac0ff2973878b4057a055ba9d656d156e1f6a6e1588d3fee48e30aceead71 +hmac: b12b93a922de8a4cacdce2ac94f572d498251129c1eea5477e7a029a29dd4c90 ...