-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.goreleaser.yml
46 lines (39 loc) · 960 Bytes
/
.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
project_name: mdz
builds:
- id: "mdz"
main: ./components/mdz/main.go
binary: mdz
goos:
- linux
- darwin
- windows
goarch:
- amd64
goarm:
- "6"
ldflags:
- -s -w # Flags to reduce binary size
archives:
- id: "mdz"
builds:
- "mdz"
format: tar.gz
name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
wrap_in_directory: true
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
skip: false
git:
prerelease_suffix: "-"
release:
prerelease: auto
# brews:
# - name: mdz
# description: "Midaz CLI"
# homepage: "https://github.com/LerianStudio/midaz/components/mdz"
# tap:
# owner: LerianStudio
# name: homebrew-tap
# url_template: "https://github.com/LerianStudio/midaz/components/mdz/releases/download/{{ .Tag }}/{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}.tar.gz"
# caveats: "Thanks for installing mdz!"