Files
lespiedsdanslecode/.gitlab-ci.yml
T
Yannick Francois a06c8314b7 deploie tout w
2019-02-24 22:57:23 +01:00

22 lines
421 B
YAML

image: ruby:2.3
variables:
JEKYLL_ENV: production
LC_ALL: C.UTF-8
before_script:
- curl https://gitlab.com/carnet-de-notes/sous-le-capot/raw/master/_config.yml > _configGl.yml
- curl https://gitlab.com/carnet-de-notes/sous-le-capot/raw/master/Gemfile > Gemfile
- bundle install
pages:
stage: deploy
script:
- mkdir public
- mv * public
artifacts:
paths:
- public
only:
- master