Files
excavations-website/.gitlab-ci.yml
T

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:
- gem install jekyll
- jekyll build -d test
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:
2015-12-17 12:58:51 +01:00
- gem install jekyll
2015-12-17 12:49:09 +01:00
- jekyll build -d public
artifacts:
paths:
- public
only:
2016-04-05 21:15:23 +03:00
- master