Switch to using a Gemfile

This commit is contained in:
Adam Voss
2017-02-10 16:45:26 -06:00
parent c93448c797
commit 4f70121c8a
3 changed files with 64 additions and 4 deletions

View File

@ -3,8 +3,8 @@ image: ruby:2.3
test:
stage: test
script:
- gem install jekyll
- jekyll build -d test
- bundle
- bundle exec jekyll build -d test
artifacts:
paths:
- test
@ -14,8 +14,8 @@ test:
pages:
stage: deploy
script:
- gem install jekyll
- jekyll build -d public
- bundle
- bundle exec jekyll build -d public
artifacts:
paths:
- public