debian-mirror-gitlab/vendor/gitlab-ci-yml/Pages/Hexo.gitlab-ci.yml

18 lines
239 B
YAML
Raw Normal View History

2016-06-22 15:30:34 +05:30
# Full project: https://gitlab.com/pages/hexo
2016-09-13 17:45:13 +05:30
image: node:4.2.2
2016-06-22 15:30:34 +05:30
pages:
2016-09-13 17:45:13 +05:30
cache:
paths:
- node_modules/
2016-06-22 15:30:34 +05:30
script:
2016-09-13 17:45:13 +05:30
- npm install hexo-cli -g
- npm install
- hexo deploy
2016-06-22 15:30:34 +05:30
artifacts:
paths:
- public
only:
2016-09-13 17:45:13 +05:30
- master