Files
irma-website/.gitlab-ci.yml

21 lines
309 B
YAML

image: privacybydesign/ruby:latest
cache:
key: $CI_COMMIT_REF_SLUG
paths:
- vendor/ruby
stages:
- build
before_script:
- set -euxo pipefail
- bundle install --path vendor
site:
stage: build
artifacts:
paths:
- _site/*
script:
- bundle exec jekyll build --config _config.yml