mirror of
https://github.com/jlengrand/irma-website.git
synced 2026-03-10 08:21:20 +00:00
23 lines
356 B
YAML
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
|