# This file is a template, and might need editing before it works on your project.
# Template project: https://gitlab.com/pages/jekyll
# Docs: https://docs.gitlab.com/ce/pages/
image: ruby:2.4

variables:
  JEKYLL_ENV: production

before_script:
- gem install bundler -v '2.0.2'
- bundle install

test:
  stage: test
  script:
  - cd generator
  #- ./generate ../assets/Changelog -o ../html/changelog.html
  - cd ..
  - bundle exec jekyll build -d test
  artifacts:
    paths:
    - test
    expire_in: 1 month
  except:
  - master
  tags:
  - docker

pages:
  stage: deploy
  script:
  - cd generator
  #- ./generate ../assets/Changelog -o ../html/changelog.html
  - cd ..
  - bundle exec jekyll build -d public
  artifacts:
    paths:
    - public
    expire_in: 1 month
  only:
  - master
  tags:
  - docker