debian-mirror-gitlab/lib/gitlab/ci/templates/Pages/Hexo.gitlab-ci.yml
2021-04-17 20:07:23 +05:30

17 lines
332 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
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH