minetest_modding_book/.gitlab-ci.yml

32 lines
442 B
YAML
Raw Normal View History

2020-08-18 23:43:31 +01:00
image: jekyll/jekyll:4
2019-11-30 20:46:26 +00:00
variables:
JEKYLL_ENV: production
LC_ALL: C.UTF-8
before_script:
2020-08-18 23:43:31 +01:00
- rm Gemfile.lock
2022-06-07 18:05:28 +01:00
- bundle install
2019-11-30 20:46:26 +00:00
test:
stage: test
2020-08-18 23:43:31 +01:00
interruptible: true
2019-11-30 20:46:26 +00:00
script:
2020-08-18 23:43:31 +01:00
- bundle exec jekyll build -d test
2019-11-30 20:46:26 +00:00
artifacts:
paths:
2020-08-18 23:43:31 +01:00
- test
2019-11-30 20:46:26 +00:00
except:
2020-08-18 23:43:31 +01:00
- master
2019-11-30 20:46:26 +00:00
pages:
stage: deploy
2020-08-18 23:43:31 +01:00
interruptible: true
2019-11-30 20:46:26 +00:00
script:
2023-05-01 13:28:27 +01:00
- bundle exec jekyll build -d public
2019-11-30 20:46:26 +00:00
artifacts:
paths:
2020-08-18 23:43:31 +01:00
- public
2019-11-30 20:46:26 +00:00
only:
2020-08-18 23:43:31 +01:00
- master