debian-mirror-gitlab/lib/gitlab/ci/templates/Pages/Hexo.gitlab-ci.yml
2019-09-04 21:01:54 +05:30

17 lines
294 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