13 lines
303 B
YAML
13 lines
303 B
YAML
stages:
|
|
- build
|
|
|
|
build-job:
|
|
stage: build
|
|
script:
|
|
- sudo chmod -R 777 ./
|
|
- sudo bundle install
|
|
- bundle exec jekyll build
|
|
- mv ./_site/ ./blueanimates/
|
|
- rm -R /usr/share/nginx/blueanimates/
|
|
- cp -R ./blueanimates/ /usr/share/nginx/blueanimates/
|
|
- rm -R ./blueanimates/
|