fix(): Adds step to pull the theme
This commit is contained in:
parent
61006038a0
commit
58fe301922
1 changed files with 15 additions and 0 deletions
15
.drone.yml
15
.drone.yml
|
@ -3,9 +3,24 @@ kind: pipeline
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: clone
|
||||||
|
image: alpine/git
|
||||||
|
commands:
|
||||||
|
- git submodule update --init --recursive
|
||||||
|
volumes:
|
||||||
|
- name: hugo-cache
|
||||||
|
path: /drone/src
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: plugins/hugo
|
image: plugins/hugo
|
||||||
|
volumes:
|
||||||
|
- name: hugo-cache
|
||||||
|
path: /drone/src
|
||||||
settings:
|
settings:
|
||||||
hugo_version: 0.84.4
|
hugo_version: 0.84.4
|
||||||
validate: true
|
validate: true
|
||||||
pull: always
|
pull: always
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: hugo-cache
|
||||||
|
temp: {}
|
||||||
|
|
Loading…
Reference in a new issue