Files
excavations-website/.gitlab-ci.yml

24 lines
291 B
YAML
Raw Normal View History

2016-04-05 21:15:23 +03:00
image: ruby:2.3
2016-04-05 21:19:30 +03:00
test:
stage: test
script:
2017-02-10 16:45:26 -06:00
- bundle
- 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
- 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