Skip to content

Commit

Permalink
fixed docker image config in goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
raianand committed Apr 1, 2024
1 parent 011d058 commit be8b6ea
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,9 @@ docker_signs:
artifacts: all

dockers:
- image: "ghcr.io/koalalab-inc/pinny"
tag_templates:
- "{{ .Version }}-amd64"
- "amd64"
- image_templates:
- "ghcr.io/koalalab-inc/pinny:{{ .Version }}-amd64"
- "ghcr.io/koalalab-inc/pinny:amd64"
use: buildx
dockerfile: Dockerfile
build_flag_templates:
Expand All @@ -67,18 +66,15 @@ dockers:
- "--platform=linux/arm/v7"
docker_manifests:
- name_template: "ghcr.io/koalalab-inc/pinny:{{ .Version }}"
image: "ghcr.io/koalalab-inc/pinny"
tag_templates:
- "{{ .Version }}-amd64"
- "{{ .Version }}-arm64"
- "{{ .Version }}-armv7"
image_templates:
- "ghcr.io/koalalab-inc/pinny:{{ .Version }}-amd64"
- "ghcr.io/koalalab-inc/pinny:{{ .Version }}-arm64"
- "ghcr.io/koalalab-inc/pinny:{{ .Version }}-armv7"
- name_template: "ghcr.io/koalalab-inc/pinny:latest"
image: "ghcr.io/koalalab-inc/pinny"
tag_templates:
- "{{ .Version }}-amd64"
- "{{ .Version }}-arm64"
- "{{ .Version }}-armv7"

image_templates:
- "ghcr.io/koalalab-inc/pinny:{{ .Version }}-amd64"
- "ghcr.io/koalalab-inc/pinny:{{ .Version }}-arm64"
- "ghcr.io/koalalab-inc/pinny:{{ .Version }}-armv7"



Expand Down

0 comments on commit be8b6ea

Please sign in to comment.