Skip to content

Commit c25231f

Browse files
committed
goreleaser: fix docker latest tag for connect image
The connect goreleaser config incorrectly tagged the main image as `latest-cloud` instead of `latest`, colliding with the cloud variant and leaving the `latest` tag stale across releases. Fixes #4253 Fixes #4254
1 parent 7647561 commit c25231f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.goreleaser/connect.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ dockers_v2:
7575
- "{{ if not .IsSnapshot }}{{ .Version }}{{ end }}"
7676
- "{{ if and (not .IsSnapshot) (eq .Prerelease ``) }}{{ .Major }}.{{.Minor}}{{ end }}"
7777
- "{{ if and (not .IsSnapshot) (eq .Prerelease ``) }}{{ .Major }}{{ end }}"
78-
- "{{ if and (not .IsSnapshot) (eq .Prerelease ``) }}latest-cloud{{ end }}"
78+
- "{{ if and (not .IsSnapshot) (eq .Prerelease ``) }}latest{{ end }}"
7979
- "{{ if or .IsSnapshot (ne .Prerelease ``) }}edge{{ end }}"
8080
platforms:
8181
- linux/amd64

0 commit comments

Comments
 (0)