when:
  event: [tag, push]

steps:
  - name: build
    image: golang:1.24.2-alpine
    commands:
      - apk update
      - apk add bash
      - bash scripts/build.sh

depends_on:
  - lint
  - tests