This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
spdocker/.gitlab-ci.yml
2018-03-07 16:08:46 +11:00

25 lines
257 B
YAML

# Deploy pages with hexo
image: node:4.2.2
pages:
stage: deploy
cache:
paths:
- node_modules/
script:
- npm install hexo --save
- npm install
- hexo generate
artifacts:
paths:
- public
only:
- pages
tags:
- pages