trepa/.woodpecker/.build.yml
2025-02-26 19:14:21 +00:00

14 lines
No EOL
196 B
YAML

when:
event: [tag, push]
steps:
- name: build
image: golang:1.24-alpine
commands:
- apk update
- apk add bash
- bash scripts/build.sh
depends_on:
- lint
- tests