29d6558b4e
dans une orientation où le thème change pour toutes les pages
23 lines
519 B
YAML
23 lines
519 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
|
|
variables:
|
|
BASEURL: '/$CI_PROJECT_NAME'
|
|
script:
|
|
- bundle exec jekyll build -d public --baseurl $BASEURL --config _config.yml,_configGl.yml
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|