File tree 3 files changed +29
-5
lines changed
3 files changed +29
-5
lines changed Original file line number Diff line number Diff line change 20
20
with :
21
21
go-version : 1.17
22
22
23
+ - name : Set up QEMU
24
+ uses : docker/setup-qemu-action@v1
25
+
26
+ - name : Set up Docker Buildx
27
+ uses : docker/setup-buildx-action@v1
28
+
23
29
- name : Docker login
24
30
uses : docker/login-action@v1
25
31
with :
Original file line number Diff line number Diff line change @@ -45,22 +45,40 @@ changelog:
45
45
dockers :
46
46
- image_templates :
47
47
- " itzg/rcon-cli:{{ .Version }}-amd64"
48
- - " itzg/rcon-cli:latest"
49
- binaries :
50
- - rcon-cli
48
+ dockerfile : Dockerfile.release
49
+ use : buildx
51
50
goos : linux
52
51
goarch : amd64
52
+ build_flag_templates :
53
+ - " --platform=linux/amd64"
53
54
- image_templates :
54
55
- " itzg/rcon-cli:{{ .Version }}-arm64"
55
- binaries :
56
- - rcon-cli
56
+ dockerfile : Dockerfile.release
57
+ use : buildx
57
58
goos : linux
58
59
goarch : arm64
60
+ build_flag_templates :
61
+ - " --platform=linux/arm64"
62
+ - image_templates :
63
+ - " itzg/rcon-cli:{{ .Version }}-armv7"
64
+ dockerfile : Dockerfile.release
65
+ use : buildx
66
+ goos : linux
67
+ goarch : arm
68
+ goarm : ' 7'
69
+ build_flag_templates :
70
+ - " --platform=linux/arm/v7"
59
71
docker_manifests :
72
+ - name_template : " itzg/rcon-cli:latest"
73
+ image_templates :
74
+ - " itzg/rcon-cli:{{ .Version }}-amd64"
75
+ - " itzg/rcon-cli:{{ .Version }}-arm64"
76
+ - " itzg/rcon-cli:{{ .Version }}-armv7"
60
77
- name_template : " itzg/rcon-cli:{{ .Version }}"
61
78
image_templates :
62
79
- " itzg/rcon-cli:{{ .Version }}-amd64"
63
80
- " itzg/rcon-cli:{{ .Version }}-arm64"
81
+ - " itzg/rcon-cli:{{ .Version }}-armv7"
64
82
scoop :
65
83
bucket :
66
84
owner : itzg
File renamed without changes.
You can’t perform that action at this time.
0 commit comments