-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
42 lines (34 loc) · 893 Bytes
/
.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
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}-next"
brews:
- tap:
owner: "janritter"
name: "aws-lambda-live-tuner"
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }} [skip ci]"
folder: HomebrewFormula
homepage: "https://github.com/janritter/aws-lambda-live-tuner"
description: "Tool to optimize Lambda functions on real incoming events"
license: "MIT"
install: |
bin.install "aws-lambda-live-tuner"
signs:
- cmd: cosign
stdin: "{{ .Env.COSIGN_PWD }}"
args:
["sign-blob", "--key=cosign.key", "--output-signature=${signature}", "--yes=true", "${artifact}"]
artifacts: all