EllieHub/.woodpecker/build.yaml

22 lines
341 B
YAML
Raw Normal View History

2024-07-18 07:05:00 -07:00
pipeline:
run-one:
image: busybox
group: first
commands:
- echo "first run"
run-two:
image: busybox
group: first
commands:
- echo "second run"
run-three:
image: ubuntu
commands:
- echo hi
when:
branch:
include: [ main, release/* ]
exclude: [ test/1.0.0, test/1.1.* ]