-
Notifications
You must be signed in to change notification settings - Fork 46
/
.goreleaser.yml
55 lines (51 loc) · 1.34 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
54
55
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
version: 2
before:
hooks:
# You may remove this if you don't use go modules.
- go mod download
# you may remove this if you don't need go generate
- go generate ./...
builds:
- main: ./cmd/metal
env:
- CGO_ENABLED=0
binary: metal
ldflags:
- -X github.com/equinix/metal-cli/cmd.Version={{.Version}}
- -X github.com/equinix/metal-cli/cmd.Build=${.Commit}"
goos:
- freebsd
- linux
- windows
- darwin
goarch:
- amd64
- arm
- arm64
goarm:
- "6"
- "7"
archives:
- format: binary
name_template: "{{ .Binary }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
checksum:
name_template: "{{ .ProjectName }}_{{ .Version }}_checksums.txt"
release:
mode: "keep-existing"
snapshot:
name_template: "{{ .Tag }}-next"
brews:
- homepage: "https://deploy.equinix.com/developers/docs/metal/libraries/cli/"
description: "Official Equinix Metal CLI"
license: "MIT"
dependencies:
- name: "go"
type: build
test: |
system "#{bin}/metal -v"
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
repository:
owner: equinix
name: homebrew-tap