-
Notifications
You must be signed in to change notification settings - Fork 25
/
.goreleaser.yml
51 lines (51 loc) · 1.27 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
before:
hooks:
- go mod download
builds:
- env:
- CGO_ENABLED=0
- GO111MODULE=on
goos:
- darwin
- windows
- linux
goarch:
- amd64
- arm64
ldflags: -X github.com/jaxxstorm/aws-sso-creds/pkg/version.Version={{.Version}}
binary: aws-sso-creds
main: ./cmd/aws-sso-creds/main.go
archives:
- name_template: "{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
snapshot:
name_template: "{{ .Tag }}-SNAPSHOT"
changelog:
skip: true
release:
prerelease: auto
brews:
- name: aws-sso-creds
tap:
owner: jaxxstorm
name: homebrew-tap
commit_author:
name: GitHub Actions
email: bot@leebriggs.co.uk
folder: Formula
homepage: "https://leebriggs.co.uk"
description: "Helper utility to get temporary credentials from AWS SSO."
scoop:
url_template: "http://github.com/jaxxstorm/aws-sso-creds/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
bucket:
owner: jaxxstorm
name: scoop-bucket
branch: main
commit_author:
name: bot
email: bot@leebriggs.co.uk
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "https://leebriggs.co.uk/"
description: "Helper utility to get temporary credentials from AWS SSO."