-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.goreleaser.yml
43 lines (43 loc) · 1.11 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
# Make sure to check the documentation at http://goreleaser.com
project_name: lw-cli
before:
hooks:
- go mod verify
builds:
- env:
- CGO_ENABLED=0
goos:
- windows
- linux
- darwin
ldflags: -X github.com/liquidweb/liquidweb-cli/version.Version={{ .Env.VERSION }} -X github.com/liquidweb/liquidweb-cli/version.BuildTime={{ .Env.BUILDTIME }} -X github.com/liquidweb/liquidweb-cli/version.GitCommit={{ .Env.GITCOMMIT }}
# archives:
# - replacements:
# darwin: Darwin
# linux: Linux
# windows: Windows
# amd64: x86_64
# checksum:
# name_template: 'checksums.txt'
# snapshot:
# name_template: "{{ .Tag }}"
# changelog:
# sort: asc
# filters:
# exclude:
# - '^docs:'
# - '^test:'
nfpms:
-
# replacements:
# amd64: x86_64
vendor: "Liquid Web LLC"
license: "Apache 2"
homepage: "https://liquidweb.com"
maintainer: Jeff VanDellen <[email protected]>
description: "LiquidWeb command line client"
file_name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
formats:
- rpm
- deb
bindir: "/usr/local/bin"