Skip to content
Snippets Groups Projects
.gitlab-ci.yml 283 B
Newer Older
Lukas Ruge's avatar
Lukas Ruge committed
stages:
  - deploy

Lukas Ruge's avatar
Lukas Ruge committed
cache:
  paths:
    - vendor
  key: "$CI_BUILD_REPO"
  
Lukas Ruge's avatar
Lukas Ruge committed
before_script:
  - gem install bundler
  
deploy_site:
  stage: deploy
  only:
    - master
  script:
    - bundle install --path=vendor/
    - bundle exec jekyll build
  artifacts:
    paths:
      - _site/