mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-16 15:58:16 +00:00
17 lines
216 B
YAML
17 lines
216 B
YAML
image: ruby:2.5
|
|
stages:
|
|
- build
|
|
|
|
variables:
|
|
LANG: "C.UTF-8"
|
|
|
|
before_script:
|
|
- gem install bundler
|
|
|
|
build_site:
|
|
stage: build
|
|
only:
|
|
- master
|
|
script:
|
|
- bundle install
|
|
- bundle exec jekyll build
|