-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.goreleaser.yml
57 lines (46 loc) · 1.07 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
# This is an example .goreleaser.yml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
project_name: ffcss
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...
# so that github does not create a tag in another place
- git push
# push the tag
- git push origin {{ .Tag }}
builds:
-
goos: [windows, linux, darwin]
goarch: [amd64, 386]
binary: ffcss
archives:
-
format: tar.gz
format_overrides:
- goos: windows
format: zip
name_template: '{{.Os}}-{{.Arch}}'
replacements:
darwin: macos
386: 32bit
amd64: 64bit
files:
- LICENSE
- README.md
- CHANGELOG.md
- themes/**
checksum:
name_template: 'checksums.txt'
# TODO: Homebrew, NFPM, Scoop, Snapcraft (eww), Signing
release:
prerelease: auto
name_template: "{{ .Version }}"
changelog:
skip: true
milestones:
-
name_template: "{{ .Version }}"
close: true