From 21b270018f87c7003afc0979f930449ba02d5a3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20P=C3=A9rez?= Date: Thu, 29 May 2025 22:05:24 +0200 Subject: [PATCH] pipeline from woodpecker docs --- .woodpecker.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 0e8f0ab..16fb1bd 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,5 +1,15 @@ -pipeline: - hello: - image: alpine +when: + - event: push + branch: main + +steps: + - name: build + image: debian commands: - - echo "Hola desde Woodpecker intento 2" + - 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