-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
51 lines (50 loc) · 1.21 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
before:
hooks:
- go mod download
builds:
- goos:
- darwin
- windows
- linux
goarch:
- amd64
- arm64
ldflags: -X github.com/jaxxstorm/connecti/pkg/version.Version={{.Version}}
binary: connecti
main: ./cmd/connecti/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: connecti
tap:
owner: jaxxstorm
name: homebrew-tap
commit_author:
name: GitHub Actions
email: [email protected]
folder: Formula
homepage: "https://leebriggs.co.uk"
description: "Quickly connect to your cloud infrastructure"
dependencies:
- pulumi
scoop:
url_template: "http://github.com/jaxxstorm/connecti/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
bucket:
owner: jaxxstorm
name: scoop-bucket
branch: main
commit_author:
name: bot
email: [email protected]
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "https://leebriggs.co.uk/"
description: "Quickly connect to your cloud infrastructure."