-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
78 lines (75 loc) · 1.32 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
project_name: gohosts
dist: /tmp/gohosts
env:
- GO111MODULE=on
before:
hooks:
- go mod download
build:
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X github.com/gohosts/main.Version={{ .Version }}
main: main.go
binary: gohosts
goos:
- linux
- freebsd
- netbsd
- openbsd
goarch:
- amd64
- 386
- arm
- arm64
- mips
- mipsle
- mips64
- mips64le
goarm:
- 5
- 6
- 7
ignore:
- goos: openbsd
goarch: arm
- goos: freebsd
goarch: arm
- goos: netbsd
goarch: arm
- goos: openbsd
goarch: arm64
- goos: freebsd
goarch: arm64
- goos: netbsd
goarch: arm64
- goos: openbsd
goarch: mips
- goos: freebsd
goarch: mips
- goos: netbsd
goarch: mips
- goos: openbsd
goarch: mipsle
- goos: freebsd
goarch: mipsle
- goos: netbsd
goarch: mipsle
- goos: openbsd
goarch: mips64
- goos: freebsd
goarch: mips64
- goos: netbsd
goarch: mips64
- goos: openbsd
goarch: mips64le
- goos: freebsd
goarch: mips64le
- goos: netbsd
goarch: mips64le
archives:
- name_template: "{{.Os}}-{{.Arch}}{{if .Arm}}v{{.Arm}}{{end}}-{{ .ProjectName }}"
format: tar.gz
format_overrides:
- goos: windows
format: zip