Files
excavations-website/.gitlab-ci.yml
Achilleas Pipinellis 6f3ebcb689 Add a test job
2016-04-05 21:19:30 +03:00

24 lines
291 B
YAML

image: ruby:2.3
test:
stage: test
script:
- gem install jekyll
- jekyll build -d test
artifacts:
paths:
- test
except:
- master
pages:
stage: deploy
script:
- gem install jekyll
- jekyll build -d public
artifacts:
paths:
- public
only:
- master