initial commit
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/build unknown status
ci/woodpecker/push/test unknown status
ci/woodpecker/push/deploy unknown status

This commit is contained in:
Aaron Riedel 2024-10-21 22:09:47 +02:00
commit 95181a4f22
Signed by: aaron
GPG key ID: 643004654D40D577
6 changed files with 177 additions and 0 deletions

19
.woodpecker/.test.yaml Normal file
View file

@ -0,0 +1,19 @@
steps:
- name: Test image (prod)
image: ${REGISTRY_URL}/${CI_REPO}:${CI_PIPELINE_NUMBER}
commands:
- echo test
when:
- branch: main
event: [push, manual]
- name: Test image
image: ${REGISTRY_URL}/${CI_REPO}:testing-${CI_PIPELINE_NUMBER}
commands:
- echo test
when:
- branch:
exclude: main
event: [push, manual]
depends_on:
- lint
- build