fediparty/.gitlab-ci.yml

22 lines
307 B
YAML
Raw Normal View History

2018-03-12 19:31:14 +00:00
image: node:6.11.1
pages:
cache:
2018-03-15 01:44:52 +00:00
untracked: true
key: "$CI_BUILD_REF_NAME"
2018-03-12 19:31:14 +00:00
paths:
- node_modules/
script:
2018-03-15 01:28:52 +00:00
- npm install gulp -g
- npm install hexo-cli -g
- npm install
2018-03-12 19:31:14 +00:00
- gulp build --cwd ./themes/starter
- hexo deploy
artifacts:
paths:
- public
only:
- master