20 lines
343 B
YAML
20 lines
343 B
YAML
image: monachus/hugo
|
|
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
before_script:
|
|
- git submodule sync --recursive
|
|
- git submodule update --init --recursive
|
|
- cd themes/blackburn && git checkout master && git pull
|
|
|
|
pages:
|
|
script:
|
|
- ls themes/blackburn/layouts/post
|
|
- hugo
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|