From b98b9b2721b0d4f0c4285dd92ab67b9681468235 Mon Sep 17 00:00:00 2001 From: 0x1d Date: Mon, 12 Jan 2026 11:22:08 +0100 Subject: [PATCH] fix: add goreleaser config to specify build main path --- .goreleaser.yaml | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .goreleaser.yaml diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 0000000..02b8544 --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,46 @@ +version: 2 +project_name: golang-template + +before: + hooks: + - go mod tidy + +builds: + - id: app + env: + - CGO_ENABLED=0 + main: ./cmd/app + binary: app + goos: + - linux + - windows + - darwin + goarch: + - amd64 + - arm64 + +archives: + - format: tar.gz + name_template: >- + {{ .ProjectName }}_ + {{- title .Os }}_ + {{- if eq .Arch "amd64" }}x86_64 + {{- else if eq .Arch "386" }}i386 + {{- else }}{{ .Arch }}{{ end }} + {{- if .Arm }}v{{ .Arm }}{{ end }} + format_overrides: + - goos: windows + format: zip + +checksum: + name_template: 'checksums.txt' + +snapshot: + version_template: "{{ incpatch .Version }}-next" + +changelog: + sort: asc + filters: + exclude: + - '^docs:' + - '^test:'