forked from itzg/mc-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
94 lines (94 loc) · 2.43 KB
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
project_name: mc-monitor
before:
hooks:
- go mod download
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm
- arm64
goarm:
- "7"
ignore:
- goos: windows
goarch: arm
archives:
-
format_overrides:
- goos: windows
format: zip
dockers:
- image_templates:
- itzg/{{ .ProjectName }}:{{ .Version }}-amd64
dockerfile: Dockerfile.release
use: buildx
build_flag_templates:
- --platform
- linux/amd64
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- image_templates:
- itzg/{{ .ProjectName }}:{{ .Version }}-arm64
dockerfile: Dockerfile.release
goarch: arm64
use: buildx
build_flag_templates:
- --platform
- linux/arm64
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- image_templates:
- itzg/{{ .ProjectName }}:{{ .Version }}-arm32v7
dockerfile: Dockerfile.release
goarch: arm
goarm: "7"
use: buildx
build_flag_templates:
- --platform
- linux/arm/v7
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
docker_manifests:
- name_template: itzg/{{ .ProjectName }}:{{ .Version }}
image_templates:
- itzg/{{ .ProjectName }}:{{ .Version }}-amd64
- itzg/{{ .ProjectName }}:{{ .Version }}-arm64
- itzg/{{ .ProjectName }}:{{ .Version }}-arm32v7
- name_template: itzg/{{ .ProjectName }}:latest
image_templates:
- itzg/{{ .ProjectName }}:{{ .Version }}-amd64
- itzg/{{ .ProjectName }}:{{ .Version }}-arm64
- itzg/{{ .ProjectName }}:{{ .Version }}-arm32v7
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^ci:'
- '^misc:'
scoops:
- repository:
owner: itzg
name: scoop-bucket
token: "{{ .Env.SCOOP_TAP_GITHUB_TOKEN }}"
folder: bucket
license: MIT
description: Command/agent to monitor the status of Minecraft servers
brews:
- repository:
owner: itzg
name: homebrew-tap
token: "{{ .Env.SCOOP_TAP_GITHUB_TOKEN }}"
license: MIT
description: Command/agent to monitor the status of Minecraft servers