-
Notifications
You must be signed in to change notification settings - Fork 49
/
.goreleaser.yml
55 lines (49 loc) · 1.19 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
project_name: 'geoip2-csv-converter'
version: 2
builds:
- id: 'geoip2-csv-converter'
binary: 'geoip2-csv-converter'
goos:
- 'darwin'
- 'linux'
- 'windows'
ignore:
- goos: 'darwin'
goarch: '386'
archives:
- id: 'geoip2-csv-converter'
builds:
- 'geoip2-csv-converter'
wrap_in_directory: true
format_overrides:
- goos: windows
format: zip
files:
- 'CHANGELOG.md'
- 'LICENSE'
- 'README.md'
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
disable: true
nfpms:
- id: 'geoip2-csv-converter'
builds:
- 'geoip2-csv-converter'
vendor: 'MaxMind, Inc.'
homepage: 'https://www.maxmind.com/'
maintainer: 'MaxMind, Inc. <[email protected]>'
description: 'Convert GeoIP2 and GeoLite2 CSVs to different formats.'
license: 'Apache 2.0'
formats:
- 'deb'
- 'rpm'
contents:
- src: CHANGELOG.md
dst: /usr/share/doc/geoip2-csv-converter/CHANGELOG.md
- src: LICENSE
dst: /usr/share/doc/geoip2-csv-converter/LICENSE
- src: README.md
dst: /usr/share/doc/geoip2-csv-converter/README.md