1
0
mirror of https://github.com/devolitalia/forty-jekyll-theme synced 2025-01-08 22:31:26 +01:00
devol.it/.gitlab-ci.yml
2016-08-28 22:43:43 +00:00

26 lines
520 B
YAML

# This file is a template, and might need editing before it works on your project.
# Full project: https://gitlab.com/pages/jekyll
image: ruby:2.3
test:
stage: test
script:
- gem install jekyll jekyll-sitemap jekyll-seo-tag jekyll-feed jemoji
- jekyll build -d test
artifacts:
paths:
- test
except:
- master
pages:
stage: deploy
script:
- gem install jekyll jekyll-sitemap jekyll-seo-tag jekyll-feed jemoji
- jekyll build -d public
artifacts:
paths:
- public
only:
- master