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.
mystic/.gitlab-ci.yml

26 lines
266 B
YAML
Raw Normal View History

2018-09-03 07:41:16 +00:00
# Deploy pages with hexo
image: node:9.7
pages:
stage: deploy
cache:
paths:
- node_modules/
script:
- npm install hexo-cli -g
- npm install
- hexo generate
artifacts:
paths:
- public
only:
- pages
tags:
2018-10-25 12:19:25 +00:00
- docker
2018-09-03 07:41:16 +00:00
- pages