1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-29 03:23:37 +02:00
MLEM/.woodpecker/docs.yml

17 lines
416 B
YAML
Raw Normal View History

2023-07-10 14:35:47 +02:00
steps:
document:
image: mcr.microsoft.com/dotnet/sdk:8.0-jammy
2023-07-10 14:35:47 +02:00
commands:
- dotnet tool restore
- dotnet cake --target Document --branch $CI_COMMIT_BRANCH
deploy:
image: debian:latest
when:
- event: [push, manual]
branch: release
commands:
- rm -rfv /var/www/MLEM/*
- cp -rv Docs/_site/. /var/www/MLEM/
volumes:
- /var/www/MLEM:/var/www/MLEM