File tree 1 file changed +17
-4
lines changed
1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -16,37 +16,50 @@ builds:
16
16
- arm64
17
17
- ppc64le
18
18
- s390x
19
+ - id : unpack
20
+ main : ./cmd/unpack/main.go # Update this path to the actual location of your unpack source
21
+ binary : bin/unpack
22
+ asmflags : " {{ .Env.GO_BUILD_ASMFLAGS }}"
23
+ gcflags : " {{ .Env.GO_BUILD_GCFLAGS }}"
24
+ ldflags : " {{ .Env.GO_BUILD_LDFLAGS }}"
25
+ goos :
26
+ - linux
27
+ goarch :
28
+ - amd64
29
+ - arm64
30
+ - ppc64le
31
+ - s390x
19
32
dockers :
20
33
- image_templates :
21
34
- " {{ .Env.IMAGE_REPO }}:{{ .Env.IMAGE_TAG }}-amd64"
22
35
dockerfile : Dockerfile
23
36
goos : linux
24
37
goarch : amd64
25
- use : buildx
38
+ use : docker
26
39
build_flag_templates :
27
40
- " --platform=linux/amd64"
28
41
- image_templates :
29
42
- " {{ .Env.IMAGE_REPO }}:{{ .Env.IMAGE_TAG }}-arm64"
30
43
dockerfile : Dockerfile
31
44
goos : linux
32
45
goarch : arm64
33
- use : buildx
46
+ use : docker
34
47
build_flag_templates :
35
48
- " --platform=linux/arm64"
36
49
- image_templates :
37
50
- " {{ .Env.IMAGE_REPO }}:{{ .Env.IMAGE_TAG }}-ppc64le"
38
51
dockerfile : Dockerfile
39
52
goos : linux
40
53
goarch : ppc64le
41
- use : buildx
54
+ use : docker
42
55
build_flag_templates :
43
56
- " --platform=linux/ppc64le"
44
57
- image_templates :
45
58
- " {{ .Env.IMAGE_REPO }}:{{ .Env.IMAGE_TAG }}-s390x"
46
59
dockerfile : Dockerfile
47
60
goos : linux
48
61
goarch : s390x
49
- use : buildx
62
+ use : docker
50
63
build_flag_templates :
51
64
- " --platform=linux/s390x"
52
65
docker_manifests :
You can’t perform that action at this time.
0 commit comments