Skip to content

Commit

Permalink
build: fix docker manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
szkiba committed Oct 1, 2023
1 parent 8185abe commit 741eb4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,17 +107,17 @@ docker_manifests:
- "{{ .Env.OWNER }}/{{ .ProjectName }}:{{ .Tag }}-amd64"
- "{{ .Env.OWNER }}/{{ .ProjectName }}-arm64"
- id: major
name_template: "{{ .Env.OWNER }}/{{ .ProjectName }}:{{ .Tag }}"
name_template: "{{ .Env.OWNER }}/{{ .ProjectName }}:v{{ .Major }}"
image_templates:
- "{{ .Env.OWNER }}/{{ .ProjectName }}:v{{ .Major }}-amd64"
- "{{ .Env.OWNER }}/{{ .ProjectName }}:v{{ .Major }}-arm64"
- id: major-minor
name_template: "{{ .Env.OWNER }}/{{ .ProjectName }}:{{ .Tag }}"
name_template: "{{ .Env.OWNER }}/{{ .ProjectName }}:v{{ .Major }}.{{ .Minor }}"
image_templates:
- "{{ .Env.OWNER }}/{{ .ProjectName }}:v{{ .Major }}.{{ .Minor }}-amd64"
- "{{ .Env.OWNER }}/{{ .ProjectName }}:v{{ .Major }}.{{ .Minor }}-arm64"
- id: latest
name_template: "{{ .Env.OWNER }}/{{ .ProjectName }}:latest"
image_templates:
- "{{ .Env.OWNER }}/{{ .ProjectName }}:latest"
- "{{ .Env.OWNER }}/{{ .ProjectName }}:latest"
- "{{ .Env.OWNER }}/{{ .ProjectName }}:latest-amd64"
- "{{ .Env.OWNER }}/{{ .ProjectName }}:latest-arm64"

0 comments on commit 741eb4e

Please sign in to comment.