Skip to content
Snippets Groups Projects
Commit d73fee29 authored by Christophe Trefois's avatar Christophe Trefois
Browse files

Add Gitlab CI

parent aa4a650f
No related branches found
No related tags found
No related merge requests found
image: ruby:2.5
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.
Finish editing this message first!
Please register or to comment