Commit d7414702 by Jessica Hawkwell

Add .gitlab-ci.yml

1 parent 79d3f0e5
Pipeline #37 failed
in 1 second
Showing with 31 additions and 0 deletions
# This file is a template, and might need editing before it works on your project.
# Template project: https://gitlab.com/pages/jekyll
# Docs: https://docs.gitlab.com/ce/pages/
image: ruby:2.3
variables:
JEKYLL_ENV: production
before_script:
- bundle install
test:
stage: test
script:
- bundle exec jekyll build -d test
artifacts:
paths:
- test
except:
- master
pages:
stage: deploy
script:
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
- master
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!