Skip to content
Snippets Groups Projects
Commit d3857f2e authored by Johannes Keyser's avatar Johannes Keyser
Browse files

Copied gitlab-CI from example; let's see if that works...

parent a8d3fc8c
No related branches found
No related tags found
No related merge requests found
Pipeline #15 failed
image: ruby:2.3
variables:
JEKYLL_ENV: production
LC_ALL: C.UTF-8
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