Guest User

Untitled

a guest
Aug 15th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. image: jekyll/jekyll:latest
  2.  
  3. variables:
  4. JEKYLL_ENV: production
  5.  
  6. cache:
  7. paths:
  8. - node_modules/
  9.  
  10. before_script:
  11. - chown jekyll:jekyll /builds
  12. - bundle install
  13. - yarn install
  14.  
  15. pages:
  16. stage: deploy
  17. script:
  18. - bundle exec jekyll build -d public
  19. - yarn run gulp
  20. artifacts:
  21. paths:
  22. - public
  23. only:
  24. - master
Add Comment
Please, Sign In to add comment