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"