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

25 lines
255 B
YAML
Raw Normal View History

2018-03-07 04:58:54 +00:00
# Deploy pages with hexo
image: node:9.7
2018-03-07 04:58:54 +00:00
pages:
stage: deploy
cache:
paths:
- node_modules/
script:
- npm install hexo-cli -g
2018-03-07 04:58:54 +00:00
- npm install
2018-03-07 05:03:47 +00:00
- hexo generate
2018-03-07 04:58:54 +00:00
artifacts:
paths:
- public
only:
- pages
tags:
- pages