-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.goreleaser.windows.yml
57 lines (52 loc) · 1.11 KB
/
.goreleaser.windows.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
# This is an example .goreleaser.yml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
builds:
- main: ./cmd/apfs
binary: apfs
env:
- CGO_ENABLED=1
goos:
- windows
goarch:
- amd64
mod_timestamp: "{{ .CommitTimestamp }}"
flags:
- -trimpath
archives:
- replacements:
amd64: x86_64
name_template: "apfs_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
files:
- README.md
- LICENSE
- completions/*
checksum:
name_template: 'checksums.win.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
- "^bumping"
- "^Update"
- "reorg"
- "updates"
- Merge pull request
- Merge branch
scoop:
bucket:
owner: blacktop
name: scoop-bucket
homepage: https://github.com/blacktop/go-apfs
description: APFS parser written in pure Go
license: Apache 2.0