-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
107 lines (89 loc) · 2.55 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
project_name: gitwrk
before:
hooks:
- go mod download
- go test ./...
builds:
- env:
- CGO_ENABLED=0
main: ./cmd/gitwrk
binary: gitwrk
ldflags:
- -X 'github.com/unravela/gitwrk.version={{.Version}}'
goos:
- linux
- darwin
- windows
ignore:
- goos: darwin
goarch: 386
- goos: linux
goarch: 386
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^chore:'
- '^refactor:'
release:
github:
owner: unravela
name: gitwrk
name_template: "{{.ProjectName}}-v{{.Version}}"
scoop:
bucket:
owner: unravela
name: scoop-bucket
homepage: https://github.com/unravela/gitwrk
description: A small CLI tool that helps you with monthly reports by extracting working hours directly from git repository.
license: Apache 2.0
brews:
- name: gitwrk
github:
owner: unravela
name: homebrew-tap
folder: Formula
homepage: https://github.com/unravela/gitwrk
description: A small CLI tool that helps you with monthly reports by extracting working hours directly from git repository.
nfpms:
-
file_name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
replacements:
amd64: 64-bit
386: 32-bit
formats:
- deb
- rpm
scripts:
postinstall: "scripts/postinstall.sh"
epoch: 1
release: 1
vendor: unravela.io
homepage: https://github.com/unravela
maintainer: zdenko vrabel ([email protected])
description: A small CLI tool that helps you with monthly reports by extracting working hours directly from git repository.
license: Apache 2.0
snapcrafts:
-
name: gitwrk
publish: true
summary: A small CLI tool that helps you with monthly reports by extracting working hours directly from git repository.
description: |
**GitWrk** is a small commandline application that helps you with monthly reports by extracting working hours directly from git repository.
**Motivation**
As freelance developers or outsourced developers, we need to report our work hours. For years we used tools like Jira or some weird 3rd party tools for logging our hours. Having 3 different tools for reporting our work is always exhausting and error prone. Because we love transparency, we want to provide good data.
license: Apache-2.0