Files
homeserver/.woodpecker/demo-workflow.yaml
2025-07-02 23:36:07 +03:00

18 lines
328 B
YAML

when:
- branch: master
event: push
- branch: feature/*
event: push
steps:
- name: build
image: ubuntu:22.04
commands:
- echo "This is the build step"
- echo "binary-data-123" > executable
- name: a-test-step
image: golang:1.24
commands:
- echo "Testing ..."
- go version