-
Notifications
You must be signed in to change notification settings - Fork 5
/
.goreleaser.yaml
66 lines (56 loc) · 1 KB
/
.goreleaser.yaml
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
version: 1
before:
hooks:
- "make man"
- "go mod vendor"
report_sizes: true
builds:
- id: "privatebin"
env:
- "CGO_ENABLED=0"
- "GO111MODULE=on"
main: "./cmd/privatebin"
binary: "privatebin"
goos:
- "windows"
- "linux"
- "darwin"
- "freebsd"
- "openbsd"
goarch:
- "amd64"
- "arm"
- "arm64"
goarm:
- "6"
- "7"
flags:
- "-trimpath"
- "-mod=readonly"
ldflags:
- "-s -w -X main.version=v{{.Version}} -X main.commit={{.ShortCommit}} -X main.date={{.Date}}"
release:
github:
owner: "gearnode"
name: "privatebin"
draft: true
prerelease: "auto"
archives:
- format: "tar.gz"
format_overrides:
- goos: "windows"
format: "zip"
files:
- "LICENSE.txt"
- "README.md"
source:
enabled: true
name_template: "{{ .Tag }}-source"
format: "tar.gz"
files:
- "vendor"
- "man"
checksum:
algorithm: "sha512"
changelog:
disable: true