From e0693a3aa2a4a107dc6c3a4c231a01c2c0fe6b8e Mon Sep 17 00:00:00 2001 From: Owais Jamil Date: Sun, 09 Nov 2025 19:09:16 +0000 Subject: [PATCH] build: use up to date schema --- .goreleaser.yaml | 15 +++++++-------- 1 file(s) changed, 7 insertion(s)(+), 8 deletion(s)(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -11,24 +11,23 @@ - id: storm main: ./cmd binary: storm - env: - - CGO_ENABLED=0 + env: [CGO_ENABLED=0] goos: [linux, darwin, windows] goarch: [amd64, arm64, "386"] archives: - id: default formats: [tar.gz] - name_template: >- - {{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }} + name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" format_overrides: - goos: windows formats: [zip] - # 👇 this is the important part files: - - completions/** - - manpages/** - # the `**` ensures recursive inclusion from project root + # modern syntax: each item can have src/dst pairs + - src: completions/** + dst: completions + - src: manpages/** + dst: manpages changelog: sort: asc -- tangled.sh