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