From d70358658dd7cbafced0340ba9a50c8507dbc6e9 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 22 Oct 2025 02:07:35 +0000 Subject: [PATCH] Fix GoReleaser archive name templates to remove unwanted spaces MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The name_template fields in mdv-tui-archive and mdv-gui-archive were using YAML folding (>-) incorrectly, causing newlines to be converted to spaces: - mdv- tui_... → mdv-tui_... - mdv- gui_... → mdv-gui_... Fixed by placing the suffix on the same line as the hyphen, matching the correct pattern already used in mdv-mac-archive. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .goreleaser.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index b21791a..8aa5fb1 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -79,8 +79,7 @@ archives: ids: - mdv-cross name_template: >- - {{ .ProjectName }}- - tui_ + {{ .ProjectName }}-tui_ {{- .Version }}_ {{- .Os }}_ {{- if eq .Arch "amd64" }}x86_64 @@ -97,8 +96,7 @@ archives: ids: - mdv-darwin name_template: >- - {{ .ProjectName }}- - gui_ + {{ .ProjectName }}-gui_ {{- .Version }}_ {{- .Os }}_ {{- if eq .Arch "amd64" }}x86_64