From 10e334d38a299d644d3cee470d49f3fa01bc2504 Mon Sep 17 00:00:00 2001 From: Paul Lecuq Date: Sun, 26 Apr 2020 11:47:39 +0200 Subject: [PATCH] updated .drone.yml --- .drone.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 311d278..e6b001e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,19 +1,18 @@ --- kind: pipeline type: docker -name: default-linux-amd64 +name: default steps: - name: build image: gohugoio/hugo commands: - - hugo --destination build + - /hugo --destination build - name: archive - image: gohugoio/hugo + image: alpine commands: - cd build - tar -czvf website-${DRONE_TAG}.tar.gz . - - cd when: event: tag - name: release