forked from maliceio/malice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
70 lines (65 loc) · 1.42 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
# .goreleaser.yml
# Build customization
build:
binary: malice
goos:
- windows
- darwin
- linux
goarch:
- amd64
# hooks:
# post: /bin/sh install/scripts/upx.sh
archive:
files:
- contrib/completion/zsh/_malice
format: tar.gz
format_overrides:
- goos: windows
format: zip
replacements:
amd64: amd64
darwin: macOS
linux: linux
windows: win
changelog:
filters:
exclude:
- '^docs:'
- update README
- '^update vendor'
- '^small'
- updates
- fixes
sort: asc
sign:
artifacts: checksum
brew:
github:
owner: maliceio
name: homebrew-tap
folder: Formula
homepage: "https://github.com/maliceio/malice"
description: "Open Source Malware Analysis Framework."
install: |
bin.install "malice"
zsh_completion.install "contrib/completion/zsh/_malice"
test: |
system "#{bin}/malice --version"
nfpm:
vendor: MaliceIO
homepage: https://malice.io/
maintainer: Blacktop <github.com/blacktop>
description: Open Source Malware Analysis Framework.
license: Apache 2.0
formats:
- deb
- rpm
# files:
# "contrib/completion/zsh/_malice": "$HOME/.zsh/completion/_malice"
# "contrib/completion/bash/malice": "/etc/bash_completion.d/malice"
# "scripts/etc/init.d/": "/etc/init.d"
# "path/**/glob": "/var/foo/glob"
# config_files:
# "tmp/app_generated.conf": "/etc/app.conf"
# "conf/*.conf": "/etc/foo/"