-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy path.goreleaser.yml
More file actions
66 lines (65 loc) · 1.53 KB
/
Copy path.goreleaser.yml
File metadata and controls
66 lines (65 loc) · 1.53 KB
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
version: 2
project_name: mc-router
release:
github:
owner: itzg
name: mc-router
before:
hooks:
- go mod download
builds:
- id: mc-router
main: ./cmd/mc-router
binary: mc-router
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
- arm
goarm:
- "6"
ignore:
- goos: windows
goarch: arm
- goos: windows
goarch: arm64
env:
- CGO_ENABLED=0
archives:
- format_overrides:
- goos: windows
formats: ['zip']
files:
- LICENSE*
- README*
dockers_v2:
- images:
- "itzg/{{ .ProjectName }}"
- "ghcr.io/itzg/{{ .ProjectName }}"
dockerfile: Dockerfile.release
platforms:
- linux/amd64
- linux/arm64
- linux/arm/v6
tags:
- "{{ .Version }}"
- "{{ if not .Prerelease }}latest{{ end }}"
labels:
org.opencontainers.image.authors: "Geoff Bourne <itzgeoff@gmail.com>"
org.opencontainers.image.title: "mc-router"
org.opencontainers.image.description: "Routes Minecraft Java Edition client connections to backend servers based upon the requested server address."
org.opencontainers.image.source: "{{ .GitURL }}"
org.opencontainers.image.version: "{{ .Version }}"
org.opencontainers.image.revision: "{{ .FullCommit }}"
org.opencontainers.image.created: "{{ .Date }}"
org.opencontainers.image.name: "{{ .ProjectName }}"
changelog:
filters:
exclude:
- '^ci:'
- '^docs:'
- '^misc:'
- '^test:'