Skip to content

Commit d36602c

Browse files
committed
refactor(docker): standardize ARM64 image naming and update version to 0.3.11
1 parent 54f6fc5 commit d36602c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.goreleaser.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,23 @@ dockers:
3232
- "--platform=linux/amd64"
3333

3434
- image_templates:
35-
- "yarlson/zero:{{ .Version }}-arm64v8"
35+
- "yarlson/zero:{{ .Version }}-arm64"
3636
- "yarlson/zero:latest-arm64v8"
3737
goarch: arm64
3838
dockerfile: Dockerfile
3939
build_flag_templates:
40-
- "--platform=linux/arm64/v8"
40+
- "--platform=linux/arm64"
4141

4242
docker_manifests:
4343
- name_template: "yarlson/zero:{{ .Version }}"
4444
image_templates:
4545
- "yarlson/zero:{{ .Version }}-amd64"
46-
- "yarlson/zero:{{ .Version }}-arm64v8"
46+
- "yarlson/zero:{{ .Version }}-arm64"
4747

4848
- name_template: "yarlson/zero:latest"
4949
image_templates:
5050
- "yarlson/zero:latest-amd64"
51-
- "yarlson/zero:latest-arm64v8"
51+
- "yarlson/zero:latest-arm64"
5252

5353
release:
5454
github:

create-manifests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
VERSION="0.3.10"
2+
VERSION="0.3.11"
33

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

0 commit comments

Comments
 (0)