From 5f017ff96e8a6d31dd398423559b1a3c305b8880 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Fri, 6 Feb 2026 21:22:47 +0100 Subject: [PATCH] ffs --- .woodpecker.yml | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 279620a..1754e21 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,18 +1,15 @@ -kind: pipeline -name: default +when: + - event: push + branch: main steps: - - name: build-and-push - image: appleboy/drone-docker # This plugin handles the "Inception" part for you - settings: - registry: registry.coolify1.workaround.org - repo: registry.coolify1.workaround.org/debshots - username: - from_secret: REGISTRY_USER - password: - from_secret: REGISTRY_PASSWORD - dockerfile: Dockerfile - tags: - - latest - - ${CI_COMMIT_SHA:0:7} # Clean short-hash tagging - # This plugin automatically uses a dedicated volume for caching layers + - name: build + image: debian + commands: + - echo "This is the build step" + - echo "binary-data-123" > executable + - name: a-test-step + image: golang:1.16 + commands: + - echo "Testing ..." + - ./executable