-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
75 lines (66 loc) · 1.75 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
project_name: reinforcer
before:
hooks:
- go mod download
universal_binaries:
- replace: true
builds:
- binary: reinforcer
main: ./cmd/reinforcer/main.go
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X github.com/clear-street/reinforcer/cmd/reinforcer/cmd.Version={{.Version}}
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
ignore:
- goos: linux
goarch: arm
- goos: windows
goarch: arm64
archives:
- files:
- README.md
- LICENSE
format_overrides:
- goos: windows
format: zip
checksum:
name_template: "checksum.txt"
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
# Disabled until we figure out docker hub publishing
#dockers:
# - goos: linux
# goarch: amd64
# ids:
# - reinforcer
# image_templates:
# - 'clear-street/reinforcer:{{ .Tag }}'
# - 'clear-street/reinforcer:v{{ .Major }}'
# - 'clear-street/reinforcer:v{{ .Major }}.{{ .Minor }}'
# - 'clear-street/reinforcer:latest'
# build_flag_templates:
# - "--pull"
# - "--label=org.opencontainers.image.created={{.Date}}"
# - "--label=org.opencontainers.image.name={{.ProjectName}}"
# - "--label=org.opencontainers.image.revision={{.FullCommit}}"
# - "--label=org.opencontainers.image.version={{.Version}}"
# - "--label=org.opencontainers.image.source={{.GitURL}}"
# Disabled until we figure out brew publishing
#brews:
# - homepage: https://github.com/clear-street/reinforcer
# description: "Codegen tool for easy adoption of resiliency patterns in Go"
# tap:
# owner: clear-street
# name: homebrew-reinforcer
# folder: Formula
# test: |
# system "#{bin}/reinforcer --version"