-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.goreleaser.yml
More file actions
37 lines (34 loc) · 829 Bytes
/
Copy path.goreleaser.yml
File metadata and controls
37 lines (34 loc) · 829 Bytes
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
version: 2
builds:
- main: ./cmd/kube3d
binary: kube3d
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X main.version={{ .Version }}
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
archives:
- format: tar.gz
name_template: "kube3d_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
brews:
- repository:
owner: jlandersen
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
name: kube3d
homepage: "https://github.com/jlandersen/k8s-unix-system"
description: "3D Kubernetes cluster visualizer inspired by Jurassic Park"
license: "MIT"
install: |
bin.install "kube3d"
test: |
assert_match "kube3d", shell_output("#{bin}/kube3d --version")