This repository was archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
107 lines (107 loc) · 2.56 KB
/
.goreleaser.yml
File metadata and controls
107 lines (107 loc) · 2.56 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
project_name: datautils
builds:
- binary: norm
main: ./cmd/norm/main.go
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.goVersion={{.Env.GOVERSION}}
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64
- binary: count
main: ./cmd/count/main.go
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.goVersion={{.Env.GOVERSION}}
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64
- binary: rows
main: ./cmd/rows/main.go
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.goVersion={{.Env.GOVERSION}}
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64
- binary: text
main: ./cmd/text/main.go
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.goVersion={{.Env.GOVERSION}}
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64
- binary: trim
main: ./cmd/trim/main.go
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.goVersion={{.Env.GOVERSION}}
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64
archive:
format: tar.gz
format_overrides:
- goos: windows
format: zip
replacements:
darwin: macOS
linux: Linux
windows: Windows
amd64: 64-bit
files:
- CHANGELOG.md
- LICENSE
- README.md
- man/man1/*
snapshot:
name_template: SNAPSHOT-{{.Timestamp}}-{{.Commit}}
fpm:
vendor: Stefan Fischer
homepage: https://github.com/sfischer13/datautils
maintainer: Stefan Fischer <sfischer13@ymail.com>
description: Collection of handy text manipulation tools
license: MIT
formats:
- deb
- rpm
dependencies:
- awk
- sed
bindir: /usr/local/bin
snapcraft:
name: datautils
summary: Collection of handy text manipulation tools
description: |
The Data Utilities are a collection of handy text manipulation tools.
These tools are supposed to make a data wrangler’s life on the command-line easier.
grade: devel
confinement: strict
release:
github:
owner: sfischer13
name: datautils
draft: true
prerelease: true
name_template: "{{.ProjectName}}-v{{.Version}}"
changelog:
filters:
exclude:
- (?i)typo
sort: asc