Skip to content
Snippets Groups Projects
.gitlab-ci.yml 319 B
Newer Older
image: ruby:2.5

variables:
  JEKYLL_ENV: production

before_script:
Laurent Heirendt's avatar
Laurent Heirendt committed
  - apt-get -qq update
Laurent Heirendt's avatar
Laurent Heirendt committed
  - apt-get install -y -qq git-lfs
  - bundle install && bundle update

pages:
  stage: deploy
  only:
    - develop
    - master
  script:
    - bash .ci/deploy.sh

  artifacts:
    expire_in: 1 week