Skip to content
Snippets Groups Projects
.gitlab-ci.yml 358 B
Newer Older
image: ruby:2.5
Christophe Trefois's avatar
Christophe Trefois committed

variables:
  JEKYLL_ENV: production

before_script:
Yohan Jarosz's avatar
Yohan Jarosz committed
  - bundle install && bundle update
Christophe Trefois's avatar
Christophe Trefois committed

test:
  stage: test
  script:
  - bundle exec jekyll build -d test
  artifacts:
    paths:
    - test
  except:
  - master

pages:
  stage: deploy
  script:
  - bundle exec jekyll build -d public
  artifacts:
    paths:
    - public
  only:
  - master