Skip to content
Snippets Groups Projects
Commit 851c6c7a authored by Michael Kohlhase's avatar Michael Kohlhase
Browse files

Add .gitlab-ci.yml

parent f922d0e9
Branches
No related tags found
No related merge requests found
Pipeline #
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment