blog/.gitlab-ci.yml

20 lines
343 B
YAML
Raw Normal View History

2017-10-25 03:26:21 +00:00
image: monachus/hugo
2018-03-03 23:17:33 +00:00
variables:
GIT_SUBMODULE_STRATEGY: recursive
2018-03-03 23:20:29 +00:00
2017-10-25 03:26:21 +00:00
before_script:
- git submodule sync --recursive
- git submodule update --init --recursive
2018-03-03 23:26:10 +00:00
- cd themes/blackburn && git checkout master && git pull
2017-10-25 03:26:21 +00:00
pages:
script:
2018-03-03 23:03:55 +00:00
- ls themes/blackburn/layouts/post
2017-10-25 03:26:21 +00:00
- hugo
artifacts:
paths:
- public
only:
- master