-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
53 lines (44 loc) · 1.05 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
# @format
project_name: elasdx
env:
- GO111MODULE=on
before:
hooks:
- go mod download
builds:
- env:
- CGO_ENABLED=0
binary: elasdx
ldflags:
- -X github.com/LGUG2Z/elasdx/cli.Version={{ .Version }} -X github.com/LGUG2Z/elasdx/cli.Commit={{ .Commit }}
goarch:
- amd64
dockers:
- image_templates:
- "lgug2z/elasdx:{{ .Major }}"
- "lgug2z/elasdx:{{ .Major }}.{{ .Minor }}"
- "lgug2z/elasdx:{{ .Major }}.{{ .Minor }}.{{ .Patch }}"
- "lgug2z/elasdx:{{ .ShortCommit }}"
- "lgug2z/elasdx:latest"
brews:
- name: elasdx
tap:
owner: LGUG2Z
name: homebrew-tap
folder: Formula
homepage: "https://github.com/LGUG2Z/elasdx"
description: "An ElasticSearch index template updating, reindexing and cleanup tool"
test: |
system "#{bin}/elasdx --version"
install: |
bin.install "elasdx"
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Tag }}-snapshot"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"