trepa/build/ci/.build.yml
2025-03-11 21:42:36 +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