Files
irma-website/.gitlab-ci.yml

23 lines
345 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.yml