summaryrefslogtreecommitdiff
path: root/vendor/gitlab-ci-yml/Pages/Hexo.gitlab-ci.yml
blob: 02d02250bbf82da0f8321ee7dbc91c71e68adb77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Full project: https://gitlab.com/pages/hexo
image: node:6.10.0

pages:
  script:
  - npm install
  - ./node_modules/hexo/bin/hexo generate
  artifacts:
    paths:
    - public
  cache:
    paths:
      - node_modules
    key: project
  only:
  - master