Files
irma-website/.gitlab-ci.yml
2020-10-15 12:39:53 +02:00

23 lines
356 B
YAML

image: privacybydesign/ruby:latest
cache:
key: $CI_COMMIT_REF_SLUG
paths:
- vendor/ruby
stages:
- build
before_script:
- set -euxo pipefail
- gem install bundler -v "~>1.0"
- bundle install --path vendor
site:
stage: build
artifacts:
paths:
- _site/*
script:
- bundle exec jekyll build --config _config_production.yml