Skip to content

Commit

Permalink
refactor(docker): standardize ARM64 image naming and update version t…
Browse files Browse the repository at this point in the history
…o 0.3.11
  • Loading branch information
yarlson committed Jan 25, 2025
1 parent 54f6fc5 commit d36602c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,23 @@ dockers:
- "--platform=linux/amd64"

- image_templates:
- "yarlson/zero:{{ .Version }}-arm64v8"
- "yarlson/zero:{{ .Version }}-arm64"
- "yarlson/zero:latest-arm64v8"
goarch: arm64
dockerfile: Dockerfile
build_flag_templates:
- "--platform=linux/arm64/v8"
- "--platform=linux/arm64"

docker_manifests:
- name_template: "yarlson/zero:{{ .Version }}"
image_templates:
- "yarlson/zero:{{ .Version }}-amd64"
- "yarlson/zero:{{ .Version }}-arm64v8"
- "yarlson/zero:{{ .Version }}-arm64"

- name_template: "yarlson/zero:latest"
image_templates:
- "yarlson/zero:latest-amd64"
- "yarlson/zero:latest-arm64v8"
- "yarlson/zero:latest-arm64"

release:
github:
Expand Down
2 changes: 1 addition & 1 deletion create-manifests.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
VERSION="0.3.10"
VERSION="0.3.11"

# Create and push version manifest
docker manifest create yarlson/zero:${VERSION} \
Expand Down

0 comments on commit d36602c

Please sign in to comment.