tmp-gitea/.woodpecker.yml
Aravinth Manivannan 8698e80da1
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
debug: is cd preserved b/w pipelines stages?
2022-10-27 23:02:33 +05:30

22 lines
387 B
YAML

pipeline:
build:
image: python:3.11.0-bullseye
when:
event: [push, pull_request, tag, deployment]
commands:
- cd website
- make env
- make
publish:
image: python:3.11.0-bullseye
when:
event: push
branch: main
commands:
- pwd
- cd website
- pwd
- make ci-deploy
secrets: [repo_write_deploy_key]