docker-template/.woodpecker/.test.yaml
Aaron Riedel c1a014c86e
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test Pipeline failed
ci/woodpecker/push/deploy unknown status
initial commit
2024-11-05 20:28:51 +01:00

20 lines
407 B
YAML

skip_clone: true
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