-
Notifications
You must be signed in to change notification settings - Fork 5
/
.goreleaser.yml
69 lines (62 loc) · 1.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
---
project_name: chrono
release:
github:
owner: gochrono
name: chrono
draft: true
build:
main: main.go
binary: chrono
gcflags:
- all=-trimpath={{.Env.GOPATH}}
ldflags:
- -s -w
- -X github.com/gochrono/chrono/commands.version={{.Version}}
- -X github.com/gochrono/chrono/commands.commit={{.ShortCommit}}
- -X github.com/gochrono/chrono/commands.date={{.Date}}
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64
- 386
goarm:
- 7
nfpm:
formats:
- deb
vendor: "gochrono"
homepage: "https://github.com/gochrono/chrono"
maintainer: "Jordan Knott <jordan@jordanthedev.com>"
description: "A fast and simple time tracker tool"
license: "MIT"
name_template: "{{.ProjectName}}_{{.Version}}_{{.Os}}-{{.Arch}}"
replacements:
amd64: 64bit
386: 32bit
darwin: macOS
linux: Linux
windows: Windows
snapshot:
name_template: SNAPSHOT-{{.Commit}}
checksum:
name_template: '{{ .ProjectName }}-{{ .Version }}-checksums.txt'
archive:
format: tar.gz
format_overrides:
- goos: windows
format: zip
name_template: "{{.ProjectName}}_{{.Version}}_{{.Os}}-{{.Arch}}"
replacements:
amd64: 64bit
386: 32bit
darwin: macOS
linux: Linux
windows: Windows
files:
- README.md
- LICENSE