Skip to content

Commit

Permalink
Teach goreleaser to do color manifests, oops.
Browse files Browse the repository at this point in the history
Signed-off-by: Flynn <[email protected]>
  • Loading branch information
kflynn committed Oct 6, 2024
1 parent 2985467 commit 8283e39
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,24 @@ docker_manifests:
push_flags:
- --insecure

- name_template: "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:{{ .Version }}"
image_templates:
- "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:{{ .Version }}-arm64"
- "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:{{ .Version }}-amd64"
create_flags:
- --insecure
push_flags:
- --insecure

- name_template: "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:latest"
image_templates:
- "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:latest-arm64"
- "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:latest-amd64"
create_flags:
- --insecure
push_flags:
- --insecure

- name_template: "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-external-workload:latest"
image_templates:
- "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-external-workload:latest-arm64"
Expand Down

0 comments on commit 8283e39

Please sign in to comment.