2016-08-25 18:05:54 +00:00
|
|
|
# This file is a template, and might need editing before it works on your project.
|
|
|
|
# Full project: https://gitlab.com/pages/jekyll
|
|
|
|
image: ruby:2.3
|
|
|
|
|
|
|
|
test:
|
|
|
|
stage: test
|
|
|
|
script:
|
2016-08-25 20:33:11 +00:00
|
|
|
- gem install jekyll nodejs jekyll-sitemap jekyll-seo-tag jekyll-assets sass uglifier
|
2016-08-25 18:05:54 +00:00
|
|
|
- jekyll build -d test
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- test
|
|
|
|
except:
|
|
|
|
- master
|
|
|
|
|
|
|
|
pages:
|
|
|
|
stage: deploy
|
|
|
|
script:
|
2016-08-25 20:33:11 +00:00
|
|
|
- gem install jekyll nodejs jekyll-sitemap jekyll-seo-tag jekyll-assets sass uglifier
|
2016-08-25 18:05:54 +00:00
|
|
|
- jekyll build -d public
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- public
|
|
|
|
only:
|
|
|
|
- master
|