-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
.goreleaser.yml
78 lines (74 loc) · 1.72 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
70
71
72
73
74
75
76
77
78
project_name: tg-spam
dist: .bin
builds:
- id: tg-spam
binary: "tg-spam"
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm
- arm64
ignore:
- goos: freebsd
goarch: arm
- goos: freebsd
goarch: arm64
- goos: windows
goarch: arm
- goos: windows
goarch: arm64
dir: app
ldflags: "-s -w -X main.revision={{.Tag}}-{{.ShortCommit}}-{{.CommitDate}}"
archives:
- id: tg-spam
name_template: >-
{{.ProjectName}}_
{{- .Tag}}_
{{- if eq .Os "darwin"}}macos
{{- else if eq .Os "windows"}}win
{{- else}}{{.Os}}{{end}}_
{{- if eq .Arch "amd64"}}x86_64
{{- else if eq .Arch "386"}}i386
{{- else}}{{.Arch}}{{end}}
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
rlcp: true
brews:
-
name: tg-spam
tap:
owner: umputun
name: homebrew-apps
branch: master
commit_author:
name: umputun
email: umputun@gmail.com
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "https://tg-spam.umputun.dev"
description: "tg-spam is a self-hosted Telegram bot fighting spam like no tomorrow."
license: "MIT"
nfpms:
- id: tg-spam
package_name: tg-spam
file_name_template: "{{.ProjectName}}_{{.Tag}}_{{.Os}}_{{.Arch}}"
vendor: Umputun
homepage: https://tg-spam.umputun.dev
maintainer: Umputun <umputun@gmail.com>
description: tg-spam is a self-hosted Telegram bot fighting spam like no tomorrow
license: MIT
formats:
- deb
- rpm
- apk
bindir: /usr/bin
epoch: 1
release: 1