debian-mirror-gitlab/lib/gitlab/ci/templates/Pages/Hexo.gitlab-ci.yml
2019-07-31 17:26:46 +00:00

17 lines
284 B
YAML

# Full project: https://gitlab.com/pages/hexo
image: node:10.15.3
pages:
script:
- npm install hexo-cli -g
- test -e package.json && npm install
- hexo generate
artifacts:
paths:
- public
cache:
paths:
- node_modules
key: project
only:
- master