Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. image: ruby:2.3
  2.  
  3. variables:
  4. JEKYLL_ENV: production
  5. LC_ALL: C.UTF-8
  6.  
  7. before_script:
  8. - bundle install
  9.  
  10. test:
  11. stage: test
  12. script:
  13. - bundle exec jekyll build -d test
  14. artifacts:
  15. paths:
  16. - test
  17. except:
  18. - master
  19.  
  20. pages:
  21. stage: deploy
  22. script:
  23. - bundle exec jekyll build -d public
  24. artifacts:
  25. paths:
  26. - public
  27. only:
  28. - master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement