From 816028d829086d174bcf311bad0e5dda372c1005 Mon Sep 17 00:00:00 2001 From: PurpleCow Date: Wed, 21 May 2025 17:59:15 +0200 Subject: [PATCH] .woodpecker.yml aktualisiert --- .woodpecker.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 405b83b..16fb1bd 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,5 +1,15 @@ -pipeline: - first-job: - image: busybox +when: + - event: push + branch: main + +steps: + - name: build + image: debian commands: - - echo "first run" \ No newline at end of file + - echo "This is the build step" + - echo "binary-data-123" > executable + - name: a-test-step + image: golang:1.16 + commands: + - echo "Testing ..." + - ./executable \ No newline at end of file