-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yaml
45 lines (41 loc) · 1.07 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
---
version: 2
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ldflags:
- "-X main.version={{.Version}}"
checksum:
name_template: "checksums.txt"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
# .goreleaser.yaml
brews:
- # GitHub/GitLab repository to push the formula to
repository:
owner: steffakasid
name: homebrew-lc
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
# Git author used to commit to the repository.
commit_author:
name: goreleaserbot
email: goreleaser@steffen-rumpf.de
# The project name and current git tag are used in the format string.
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
# Folder inside the repository to put the formula.
# Default is the root directory.
directory: Formula
homepage: "https://github.com/steffakasid/lc"
description: "This tool can be used collect from AWS cloudwatch log groups"
license: "Apache-2.0"