-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.goreleaser.yml
More file actions
91 lines (87 loc) · 2.31 KB
/
Copy path.goreleaser.yml
File metadata and controls
91 lines (87 loc) · 2.31 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
project_name: shield
dist: .bin
builds:
- id: shield
binary: "shield"
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: shield
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
- completions/*
rlcp: true
brews:
-
name: shield
tap:
owner: redstone-md
name: homebrew-apps
branch: master
directory: Formula
commit_author:
name: redstone-md
email: noreply@redstone.md
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "https://github.com/redstone-md/shield"
description: "Shield is a self-hosted Telegram bot fighting spam like no tomorrow."
license: "MIT"
extra_install: |
bash_completion.install "completions/shield.bash" => "shield"
zsh_completion.install "completions/shield.zsh" => "_shield"
fish_completion.install "completions/shield.fish" => "shield.fish"
nfpms:
- id: shield
package_name: shield
file_name_template: "{{.ProjectName}}_{{.Tag}}_{{.Os}}_{{.Arch}}"
vendor: Redstone MD
homepage: https://github.com/redstone-md/shield
maintainer: Redstone MD <noreply@redstone.md>
description: Shield is a self-hosted Telegram bot fighting spam like no tomorrow
license: MIT
formats:
- deb
- rpm
- apk
bindir: /usr/bin
epoch: 1
release: 1
contents:
- src: completions/shield.bash
dst: /usr/share/bash-completion/completions/shield
- src: completions/shield.zsh
dst: /usr/share/zsh/vendor-completions/_shield
- src: completions/shield.fish
dst: /usr/share/fish/vendor_completions.d/shield.fish