gitlab-org--gitlab-foss/lib/gitlab/ci/templates/Pages/Hexo.gitlab-ci.yml

18 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