Add gitlab-ci.yml file for an initial CI setup

See merge request monero-project/monero-site!1182
This commit is contained in:
luigi1111 2020-01-09 17:36:56 +01:00
commit 74e02f5ee7

14
gitlab-ci.yml Normal file
View file

@ -0,0 +1,14 @@
image: ruby:2.5
stages:
- build
before_script:
- gem install bundler
build_site:
stage: build
only:
- master
script:
- bundle install
- bundle exec jekyll build