Skip to content

Commit 538f00d

Browse files
committed
goreleaser: fix tag, so it is prefixed by v
1 parent 5daa877 commit 538f00d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.goreleaser.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dockers:
3232
- "--pull"
3333
- "--platform=linux/amd64"
3434
image_templates:
35-
- "quay.io/lwolf/kube-cleanup-operator:{{ .Version }}-amd64"
35+
- "quay.io/lwolf/kube-cleanup-operator:v{{ .Version }}-amd64"
3636

3737
- id: release-arm64
3838
dockerfile: Dockerfile.releaser
@@ -45,17 +45,17 @@ dockers:
4545
- "--pull"
4646
- "--platform=linux/arm64"
4747
image_templates:
48-
- "quay.io/lwolf/kube-cleanup-operator:{{ .Version }}-arm64"
48+
- "quay.io/lwolf/kube-cleanup-operator:v{{ .Version }}-arm64"
4949

5050
docker_manifests:
5151
- id: manifest-release
5252
name_template: "quay.io/lwolf/kube-cleanup-operator:{{ .Version }}"
5353
image_templates:
54-
- "quay.io/lwolf/kube-cleanup-operator:{{ .Version }}-amd64"
55-
- "quay.io/lwolf/kube-cleanup-operator:{{ .Version }}-arm64"
54+
- "quay.io/lwolf/kube-cleanup-operator:v{{ .Version }}-amd64"
55+
- "quay.io/lwolf/kube-cleanup-operator:v{{ .Version }}-arm64"
5656

5757
- id: manifest-latest
5858
name_template: "quay.io/lwolf/kube-cleanup-operator:latest"
5959
image_templates:
60-
- "quay.io/lwolf/kube-cleanup-operator:{{ .Version }}-amd64"
61-
- "quay.io/lwolf/kube-cleanup-operator:{{ .Version }}-arm64"
60+
- "quay.io/lwolf/kube-cleanup-operator:v{{ .Version }}-amd64"
61+
- "quay.io/lwolf/kube-cleanup-operator:v{{ .Version }}-arm64"

0 commit comments

Comments
 (0)