From 3a801a47957dc791307872aa9b8c26e01626c8df Mon Sep 17 00:00:00 2001 From: Aurelio <19254254+Aureliolo@users.noreply.github.com> Date: Thu, 19 Mar 2026 16:15:45 +0100 Subject: [PATCH] fix(ci): remove dst: . from GoReleaser archive config The `dst: .` directive creates a literal `.` directory entry in zip archives, causing PowerShell's Expand-Archive to fail with "Can not process invalid archive entry '.'". Removing it uses GoReleaser's default behavior of placing files at the archive root. Co-Authored-By: Claude Opus 4.6 (1M context) --- cli/.goreleaser.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/cli/.goreleaser.yml b/cli/.goreleaser.yml index 5f25a8b243..35e35bf926 100644 --- a/cli/.goreleaser.yml +++ b/cli/.goreleaser.yml @@ -32,7 +32,6 @@ archives: name_template: "synthorg_{{ .Os }}_{{ .Arch }}" files: - src: LICENSE - dst: . info: mtime: "{{ .CommitDate }}"