minetest_modding_book/.gitlab-ci.yml

33 lines
462 B
YAML
Raw Normal View History

2020-08-18 15:43:31 -07:00
image: jekyll/jekyll:4
2019-11-30 12:46:26 -08:00
variables:
JEKYLL_ENV: production
LC_ALL: C.UTF-8
before_script:
2020-08-18 15:43:31 -07:00
- rm Gemfile.lock
2019-11-30 12:46:26 -08:00
test:
stage: test
2020-08-18 15:43:31 -07:00
interruptible: true
2019-11-30 12:46:26 -08:00
script:
2020-08-18 15:43:31 -07:00
- bundle exec jekyll build -d test
2019-11-30 12:46:26 -08:00
artifacts:
paths:
2020-08-18 15:43:31 -07:00
- test
2019-11-30 12:46:26 -08:00
except:
2020-08-18 15:43:31 -07:00
- master
2019-11-30 12:46:26 -08:00
pages:
stage: deploy
2020-08-18 15:43:31 -07:00
interruptible: true
before_script:
- rm Gemfile.lock
2019-11-30 12:46:26 -08:00
script:
2020-08-18 15:43:31 -07:00
- bundle exec jekyll build -d public
2019-11-30 12:46:26 -08:00
artifacts:
paths:
2020-08-18 15:43:31 -07:00
- public
2019-11-30 12:46:26 -08:00
only:
2020-08-18 15:43:31 -07:00
- master