My blog
https://blog.franco.net.eu.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
526 B
25 lines
526 B
# 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.6 |
|
|
|
test: |
|
stage: test |
|
script: |
|
- gem install 'jekyll:4.0.0' jekyll-sitemap 'forwardable:1.2.0' |
|
- jekyll build -d test --future |
|
artifacts: |
|
paths: |
|
- test |
|
except: |
|
- master |
|
|
|
pages: |
|
stage: deploy |
|
script: |
|
- gem install 'jekyll:4.0.0' jekyll-sitemap 'forwardable:1.2.0' |
|
- jekyll build -d public --future |
|
artifacts: |
|
paths: |
|
- public |
|
only: |
|
- master
|
|
|