Skip to content

Commit

Permalink
updated dockers and docker manifests section for multi-arch
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmittag committed Dec 4, 2023
1 parent 786664a commit d9bcb3c
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ universal_binaries:
- replace: true

brews:
-
name: j8a
- name: j8a
homepage: "https://github.com/simonmittag/j8a"
tap:
owner: simonmittag
Expand All @@ -28,8 +27,24 @@ brews:
email: simonmittag@gmail.com

dockers:
- image_templates:
- "docker.io/simonmittag/j8a:{{.Tag}}"
- goarch: amd64
goos: linux
image_templates:
- 'docker.io/simonmittag/j8a:{{.Tag}}-amd64'
- goarch: arm64
goos: darwin
image_templates:
- 'docker.io/simonmittag/j8a:{{.Tag}}-arm64'

docker_manifests:
- name_template: 'docker.io/simonmittag/j8a:{{.Tag}}'
image_templates:
- 'docker.io/simonmittag/j8a:{{.Tag}}-arm64'
- 'docker.io/simonmittag/j8a:{{.Tag}}-amd64'
- name_template: 'docker.io/simonmittag/j8a:latest'
image_templates:
- 'docker.io/simonmittag/j8a:{{.Tag}}-arm64'
- 'docker.io/simonmittag/j8a:{{.Tag}}-amd64'

checksum:
name_template: 'checksums.txt'

0 comments on commit d9bcb3c

Please sign in to comment.