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

variables:
  JEKYLL_ENV: production

before_script:
  - bundle install && bundle update

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

  artifacts:
    paths:
      - public