Skip to content

Commit

Permalink
refactor(docker): enhance multi-arch manifest creation for improved r…
Browse files Browse the repository at this point in the history
…eliability
  • Loading branch information
yarlson committed Jan 25, 2025
1 parent d570e7a commit 4ea7f17
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,21 @@ dockers:
- "--platform=linux/arm64"

docker_manifests:
- name_template: yarlson/zero:{{ .Version }}
- id: zero-version
name_template: yarlson/zero:{{ .Version }}
image_templates:
- yarlson/zero:{{ .Version }}-amd64
- yarlson/zero:{{ .Version }}-arm64
use: docker
skip_push: auto

- name_template: yarlson/zero:latest
- id: zero-latest
name_template: yarlson/zero:latest
image_templates:
- yarlson/zero:latest-amd64
- yarlson/zero:latest-arm64
use: docker
skip_push: auto

release:
github:
Expand Down

0 comments on commit 4ea7f17

Please sign in to comment.