fediparty/.gitlab-ci.yml
2018-04-04 04:37:52 +03:00

22 lines
407 B
YAML

image: node:8.9
pages:
script:
- npm install
- npm rebuild node-sass --force
- npm install gulp -g
- gulp build --cwd ./themes/starter
- ./node_modules/hexo/bin/hexo generate
- find public -type f -iregex '.*\.\(htm\|html\|txt\|text\|js\|css\)$' -execdir gzip -f --keep {} \;
artifacts:
paths:
- public
cache:
paths:
- node_modules
key: project
only:
- master