-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.goreleaser.yaml
59 lines (59 loc) · 1.28 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
project_name: pdfrankenstein
release:
github:
owner: oxplot
name: pdfrankenstein
name_template: '{{.Tag}}'
draft: true
builds:
- id: pdfrankenstein
goos:
- linux
goarch:
- amd64
targets:
- linux_amd64_v1
dir: .
main: .
binary: pdfrankenstein
env:
- CGO_ENABLED=1
builder: go
gobinary: go
command: build
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.builtBy=goreleaser
archives:
- id: default
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
format: tar.gz
files:
- src: LICENSE
- src: Readme.md
nfpms:
- vendor: oxplot
homepage: https://github.com/oxplot/pdfrankenstein
maintainer: Mansour Behabadi <[email protected]>
description: PDFrankenstein is a GUI PDF annotator which uses Inkscape for editing.
license: BSD-3-Clause license
formats:
- apk
- deb
- rpm
snapshot:
name_template: '{{ incpatch .Version }}-next'
checksum:
name_template: checksums.txt
algorithm: sha256
changelog:
filters:
exclude:
- '^docs:'
- '^test:'
sort: asc
dist: dist
source:
name_template: '{{ .ProjectName }}-{{ .Version }}'
format: tar.gz
gomod:
gobinary: go