From 88d214b8a23d8696c9d4b20a3ceb9bb6f41f665d Mon Sep 17 00:00:00 2001 From: toastie_t0ast Date: Thu, 18 Jul 2024 07:05:00 -0700 Subject: [PATCH] Add .woodpecker/build.yaml --- .woodpecker/build.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .woodpecker/build.yaml diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml new file mode 100644 index 0000000..15dcbef --- /dev/null +++ b/.woodpecker/build.yaml @@ -0,0 +1,22 @@ +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.* ] \ No newline at end of file