mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-18 00:38:02 +00:00
Merge !1182
Add gitlab-ci.yml file for an initial CI setup See merge request monero-project/monero-site!1182
This commit is contained in:
commit
74e02f5ee7
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