-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
81 lines (77 loc) · 2.48 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
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 ./...
builds:
- binary: classeviva
id: classeviva
ldflags:
- -s -w -X github.com/zmoog/classeviva/commands.version={{.Version}} -X github.com/zmoog/classeviva/commands.commit={{.Commit}} -X github.com/zmoog/classeviva/commands.date={{.Date}} -X github.com/zmoog/classeviva/commands.builtBy=goreleaser
env:
- CGO_ENABLED=0
goos:
- linux
# - windows
- darwin
main: ./entrypoints/cli
#
# Uncomment the following lines if you want to use macOS notarization
# ---------------------------------------------------------------
#
# I have commented out the following lines because I don't have a
# paid Apple Developer account anymore.
#
# Since I'm probably the only one who will ever use this, I'm not
# goint to spend $99/year until I have a good reason to do so.
#
# - binary: classeviva
# id: classeviva-macos-amd64
# ldflags:
# - -s -w -X github.com/zmoog/classeviva/commands.version={{.Version}} -X github.com/zmoog/classeviva/commands.commit={{.Commit}} -X github.com/zmoog/classeviva/commands.date={{.Date}} -X github.com/zmoog/classeviva/commands.builtBy=goreleaser
# env:
# - CGO_ENABLED=0
# goos:
# - darwin
# goarch:
# - amd64
# main: ./entrypoints/cli
# hooks:
# post:
# - cmd: gon gon.config.amd64.hcl
# output: true
# - binary: classeviva
# id: classeviva-macos-arm64
# ldflags:
# - -s -w -X github.com/zmoog/classeviva/commands.version={{.Version}} -X github.com/zmoog/classeviva/commands.commit={{.Commit}} -X github.com/zmoog/classeviva/commands.date={{.Date}} -X github.com/zmoog/classeviva/commands.builtBy=goreleaser
# env:
# - CGO_ENABLED=0
# goos:
# - darwin
# goarch:
# - arm64
# main: ./entrypoints/cli
# hooks:
# post:
# - cmd: gon gon.config.arm64.hcl
# output: true
archives:
- replacements:
darwin: Darwin
linux: Linux
# windows: Windows
#386: i386
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'