-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
.goreleaser.yaml
61 lines (61 loc) · 1.2 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
---
before:
hooks:
- go mod tidy
builds:
- id: larry
main: ./cmd/larry/main.go
env:
- CGO_ENABLED=0
goos:
- darwin
- freebsd
- linux
- windows
goarch:
- "amd64"
nfpms:
- id: larry
package_name: larry
builds:
- larry
dependencies: []
recommends: []
suggests: []
conflicts: []
replaces: []
provides:
- larry
bindir: /usr/bin
vendor: "Eze Olea Figueroa"
homepage: "https://github.com/ezeoleaf/larry"
maintainer: "Eze Olea Figueroa <[email protected]>"
description: |
Larry 🐦 is a bot generator that post content from
different providers to one or multiple publishers
license: MIT
formats:
- apk
- deb
- rpm
changelog: ""
contents:
- src: ./larry
dst: /usr/bin/larry
version_metadata: git
deb:
lintian_overrides:
- statically-linked-binary
- changelog-file-missing-in-native-package
rpm:
summary: Larry is a bot generator
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'