Files
excavations-website/.gitlab-ci.yml

29 lines
359 B
YAML
Raw Normal View History

2016-04-05 21:15:23 +03:00
image: ruby:2.3
variables:
JEKYLL_ENV: production
2018-06-06 07:30:09 +00:00
LC_ALL: C.UTF-8
before_script:
- bundle install
2016-04-05 21:19:30 +03:00
test:
stage: test
script:
2017-02-10 16:45:26 -06:00
- bundle exec jekyll build -d test
2016-04-05 21:19:30 +03:00
artifacts:
paths:
- test
except:
- master
2015-12-17 12:49:09 +01:00
pages:
2016-04-05 21:19:30 +03:00
stage: deploy
2015-12-17 12:49:09 +01:00
script:
2017-02-10 16:45:26 -06:00
- bundle exec jekyll build -d public
2015-12-17 12:49:09 +01:00
artifacts:
paths:
- public
only:
2016-04-05 21:15:23 +03:00
- master