fetch submodule
This commit is contained in:
parent
ea1711b054
commit
000456c711
1 changed files with 11 additions and 1 deletions
12
.drone.yml
12
.drone.yml
|
@ -11,6 +11,17 @@ steps:
|
||||||
- hugo version
|
- hugo version
|
||||||
- echo "Checking folder"
|
- echo "Checking folder"
|
||||||
- ls
|
- ls
|
||||||
|
- name: submodule fetch
|
||||||
|
image: drone/git
|
||||||
|
commands:
|
||||||
|
- git submodule update --init --recursive
|
||||||
|
- name: Build
|
||||||
|
image: plugins/hugo
|
||||||
|
settings:
|
||||||
|
validate: true
|
||||||
|
commands:
|
||||||
|
- hugo --config hugo.toml
|
||||||
|
#- minify -r -o /drone/src/build /drone/src/build
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
image: plugins/hugo
|
image: plugins/hugo
|
||||||
environment:
|
environment:
|
||||||
|
@ -19,5 +30,4 @@ steps:
|
||||||
AWS_SECRET_ACCESS_KEY:
|
AWS_SECRET_ACCESS_KEY:
|
||||||
from_secret: AWS_SECRET_ACCESS_KEY
|
from_secret: AWS_SECRET_ACCESS_KEY
|
||||||
commands:
|
commands:
|
||||||
- hugo --config hugo.toml
|
|
||||||
- hugo deploy --config hugo.toml
|
- hugo deploy --config hugo.toml
|
Loading…
Reference in a new issue