This plugin allows you to deploy your project to Caprover.
Create a new workflow like .woodpecker/caprover.yml
:
when:
event: [push, tag]
branch: ${CI_REPO_DEFAULT_BRANCH}
steps:
deploy:
image: insidiousfiddler/caprover-deploy
settings:
server:
from_secret: caprover_server
app: my-app
token:
from_secret: caprover_token
branch: master
This plugin is based on deploy-from-github by CapRover. All we have done is to make it work with Woodpecker CI.