mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 11:23:29 +01:00
split up workflows
This commit is contained in:
parent
48e6762c53
commit
ccdccbe420
3 changed files with 30 additions and 29 deletions
15
.woodpecker/docs.yml
Normal file
15
.woodpecker/docs.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
steps:
|
||||||
|
build-docs:
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:7.0.305
|
||||||
|
commands:
|
||||||
|
- cd docs && dotnet tool restore && dotnet docfx
|
||||||
|
deploy-docs:
|
||||||
|
image: debian:latest
|
||||||
|
when:
|
||||||
|
- event: [push, manual]
|
||||||
|
branch: main
|
||||||
|
commands:
|
||||||
|
- rm -rfv /var/www/tinylifedocs/*
|
||||||
|
- cp -rv docs/_site/. /var/www/tinylifedocs
|
||||||
|
volumes:
|
||||||
|
- /var/www/tinylifedocs:/var/www/tinylifedocs
|
|
@ -1,29 +0,0 @@
|
||||||
steps:
|
|
||||||
build-web:
|
|
||||||
image: ruby:latest
|
|
||||||
commands:
|
|
||||||
- cd web && bundle && bundle exec jekyll build
|
|
||||||
build-docs:
|
|
||||||
image: mcr.microsoft.com/dotnet/sdk:7.0.305
|
|
||||||
commands:
|
|
||||||
- cd docs && dotnet tool restore && dotnet docfx
|
|
||||||
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
|
|
||||||
deploy-docs:
|
|
||||||
image: debian:latest
|
|
||||||
when:
|
|
||||||
- event: [push, manual]
|
|
||||||
branch: main
|
|
||||||
commands:
|
|
||||||
- rm -rfv /var/www/tinylifedocs/*
|
|
||||||
- cp -rv docs/_site/. /var/www/tinylifedocs
|
|
||||||
volumes:
|
|
||||||
- /var/www/tinylifedocs:/var/www/tinylifedocs
|
|
15
.woodpecker/web.yml
Normal file
15
.woodpecker/web.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
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
|
Loading…
Reference in a new issue