.gitlab-ci.yml 182 B

123456789101112
  1. pages:
  2. stage: deploy
  3. image: ruby:2.1
  4. script:
  5. - gem install jekyll
  6. - gem install redcarpet
  7. - jekyll build -d public
  8. artifacts:
  9. paths:
  10. - public
  11. only:
  12. - master