From 28f22e81e71ffb58ea30bcd9ca314330a6b8bb35 Mon Sep 17 00:00:00 2001 From: Rohit Darekar Date: Wed, 7 Jan 2026 00:10:51 +0530 Subject: [PATCH] chore: added woodpecker --- .woodpecker/my-first-workflow.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .woodpecker/my-first-workflow.yaml diff --git a/.woodpecker/my-first-workflow.yaml b/.woodpecker/my-first-workflow.yaml new file mode 100644 index 00000000..ffc887b2 --- /dev/null +++ b/.woodpecker/my-first-workflow.yaml @@ -0,0 +1,22 @@ +when: + - event: push + branch: main + +steps: + - name: Test the file system + image: debian + commands: + - echo "This is the build step" + - echo "binary-data-123" > executable + + - name: build the docker image + image: debian + commands: + - echo "This is the doceer step" + - echo "binary-data-123" > executable + + - name: Push the docker image + image: debian + commands: + - echo "This is the push step" + - echo "binary-data-123" > executable