2017-03-08 18:16:47 -05:00
|
|
|
# Template project: https://gitlab.com/pages/jekyll
|
|
|
|
# Docs: https://docs.gitlab.com/ce/pages/
|
2020-03-13 08:09:22 -04:00
|
|
|
image: ruby:2.6
|
2016-07-06 04:17:31 -04:00
|
|
|
|
2017-04-11 08:33:58 -04:00
|
|
|
variables:
|
|
|
|
JEKYLL_ENV: production
|
2019-06-20 09:18:16 -04:00
|
|
|
LC_ALL: C.UTF-8
|
2017-04-11 08:33:58 -04:00
|
|
|
|
2017-03-08 18:16:47 -05:00
|
|
|
before_script:
|
2020-03-13 08:09:22 -04:00
|
|
|
- gem install bundler
|
2019-06-05 12:31:35 -04:00
|
|
|
- bundle install
|
2017-03-08 18:16:47 -05:00
|
|
|
|
2016-07-06 04:17:31 -04:00
|
|
|
test:
|
|
|
|
stage: test
|
|
|
|
script:
|
2019-06-05 12:31:35 -04:00
|
|
|
- bundle exec jekyll build -d test
|
2016-07-06 04:17:31 -04:00
|
|
|
artifacts:
|
|
|
|
paths:
|
2019-06-05 12:31:35 -04:00
|
|
|
- test
|
2016-07-06 04:17:31 -04:00
|
|
|
except:
|
2019-11-13 16:06:45 -05:00
|
|
|
- master
|
2016-07-06 04:17:31 -04:00
|
|
|
|
|
|
|
pages:
|
|
|
|
stage: deploy
|
|
|
|
script:
|
2019-06-05 12:31:35 -04:00
|
|
|
- bundle exec jekyll build -d public
|
2016-07-06 04:17:31 -04:00
|
|
|
artifacts:
|
|
|
|
paths:
|
2019-06-05 12:31:35 -04:00
|
|
|
- public
|
2016-07-06 04:17:31 -04:00
|
|
|
only:
|
2019-11-13 16:06:45 -05:00
|
|
|
- master
|