forked from brocaar/chirpstack-network-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
44 lines (40 loc) · 929 Bytes
/
.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
git:
short_hash: true
project_name: loraserver
builds:
- main: cmd/loraserver/main.go
binary: loraserver
goos:
- windows
- darwin
- linux
goarch:
- amd64
- 386
- arm
- arm64
goarm:
- 5
- 6
- 7
ignore:
- goos: darwin
goarch: 386
release:
disable: true
nfpm:
vendor: LoRa Server project
homepage: https://www.loraserver.io/
maintainer: Orne Brocaar <[email protected]>
description: LoRa Server
license: MIT
formats:
- deb
bindir: /usr/bin
files:
"packaging/files/loraserver.rotate": "/etc/logrotate.d/loraserver"
"packaging/files/loraserver.init": "/usr/lib/loraserver/scripts/loraserver.init"
"packaging/files/loraserver.service": "/usr/lib/loraserver/scripts/loraserver.service"
scripts:
postinstall: "packaging/scripts/post-install.sh"
postremove: "packaging/scripts/post-remove.sh"