chore: updated workflow 5d603a08
Steve Simkins · 2026-05-18 17:03 1 file(s) · +4 −1
.github/workflows/release-go.yml +4 −1
36 36
        with:
37 37
          distribution: goreleaser
38 38
          version: '~> v2'
39 -
          args: release --clean
39 +
          # skip=validate: real git tag is "<app>-go/vX.Y.Z" but we pass
40 +
          # GORELEASER_CURRENT_TAG=vX.Y.Z so the validate-tag-at-HEAD check
41 +
          # fails. The push trigger already guarantees we're on a real tag.
42 +
          args: release --clean --skip=validate
40 43
          workdir: ${{ steps.app.outputs.dir }}
41 44
        env:
42 45
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}