mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-16 08:53:12 +01:00
16 lines
378 B
YAML
16 lines
378 B
YAML
|
steps:
|
||
|
build-web:
|
||
|
image: ruby:latest
|
||
|
commands:
|
||
|
- cd web && bundle && bundle exec jekyll build
|
||
|
deploy-web:
|
||
|
image: debian:latest
|
||
|
when:
|
||
|
- event: [push, manual]
|
||
|
branch: main
|
||
|
commands:
|
||
|
- rm -rfv /var/www/tinylifegame/*
|
||
|
- cp -rv web/_site/. /var/www/tinylifegame
|
||
|
volumes:
|
||
|
- /var/www/tinylifegame:/var/www/tinylifegame
|