art/.gitlab-ci.yml

14 lines
228 B
YAML
Raw Normal View History

2016-08-25 18:05:54 +00:00
image: ruby:2.3
2016-12-10 18:01:50 +00:00
pages:
2016-12-10 04:28:08 +00:00
stage: build
2016-08-25 18:05:54 +00:00
script:
2016-11-21 02:46:40 +00:00
- gem install jekyll
2016-08-25 18:05:54 +00:00
- jekyll build -d public
2016-12-10 04:28:08 +00:00
- gem build forty_jekyll_theme.gemspec
2016-08-25 18:05:54 +00:00
artifacts:
paths:
- public
2016-12-10 04:28:08 +00:00
- "forty_jekyll_theme-*.gem"
2016-08-25 18:05:54 +00:00
only:
2016-12-10 04:28:08 +00:00
- master