Skip to content

Commit 346341d

Browse files
FelixIsaacclaude
andcommitted
fix: remove version from archive filenames for /latest/ redirect
Changed name_template from: {{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }} To: {{ .ProjectName }}_{{ .Os }}_{{ .Arch }} Now filenames are consistent across versions: - claude-code-sync_linux_amd64.tar.gz (not _0.2.1_linux_amd64.tar.gz) - claude-code-sync_windows_amd64.zip - etc. This makes /releases/latest/download/claude-code-sync_linux_amd64.tar.gz work correctly as documented in README. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent b923ac8 commit 346341d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ builds:
2525
archives:
2626
- id: default
2727
format: tar.gz
28-
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
28+
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
2929
format_overrides:
3030
- goos: windows
3131
format: zip

0 commit comments

Comments
 (0)