mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-18 10:01:18 +00:00
Add gitlab-ci.yml file for an initial CI setup
This commit is contained in:
parent
98dd202081
commit
060927afd1
1 changed files with 14 additions and 0 deletions
14
gitlab-ci.yml
Normal file
14
gitlab-ci.yml
Normal 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
|
Loading…
Reference in a new issue