diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..0b388c4 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,17 @@ +pipeline: + build: + image: python + when: + event: [push, pull_request, tag, deployment] + commands: + - cd website/ && make env + - cd website/ && make + + publish: + image: python + when: + event: push + branch: main + commands: + - cd website/ && make ci-deploy + secrets: [repo_write_deploy_key]