From 58fe301922c3a6a8cf0a78dc8045c49376b9225a Mon Sep 17 00:00:00 2001 From: Elia el Lazkani Date: Sun, 4 Jul 2021 08:35:32 +0200 Subject: [PATCH] fix(): Adds step to pull the theme --- .drone.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.drone.yml b/.drone.yml index c750f9b..246728e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,9 +3,24 @@ kind: pipeline name: default steps: +- name: clone + image: alpine/git + commands: + - git submodule update --init --recursive + volumes: + - name: hugo-cache + path: /drone/src + - name: build image: plugins/hugo + volumes: + - name: hugo-cache + path: /drone/src settings: hugo_version: 0.84.4 validate: true pull: always + +volumes: +- name: hugo-cache + temp: {}