Select Git revision
.gitlab-ci.yml 384 B
image: ruby:3.0
stages:
- test
- build
variables:
JEKYLL_ENV: production
before_script:
- gem install bundler jekyll --no-document
- bundle install
test:
stage: test
script:
- bundle exec ruby scripts/check_oai_pmh.rb
allow_failure: true
build:
stage: build
script:
- bundle exec jekyll build
artifacts:
paths:
- _site
expire_in: 1d