blog/.gitlab-ci.yml

20 lines
544 B
YAML

# Use latest version of Node.js
image: node:latest
pages:
cache: # add cache to 'node_modules' for speeding up builds
paths:
- node_modules/ # Node modules and dependencies
script:
- npm install hexo-cli -g
- npm install
- hexo deploy # deploy the site
- find public -type f -iregex '.*\.\(htm\|html\|txt\|text\|js\|css\)$' -execdir gzip -f --keep {} \; # Compress files
artifacts:
paths:
- public # deploy to the 'public' folder
only:
- master # this job will affect only the 'master' branch