Files
k-boris-website/.woodpecker.yml
Boris 7f4b543f3d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Allow manual pipeline trigger
2026-03-29 21:18:17 +03:00

13 lines
284 B
YAML

when:
branch: main
event: [push, manual]
steps:
deploy:
image: alpine
commands:
- echo "Deploying to /webroot..."
- apk add --no-cache rsync
- rsync -av --delete --exclude='.git' --exclude='.woodpecker.yml' ./ /webroot/
- echo "Deploy complete"