-
Notifications
You must be signed in to change notification settings - Fork 78
/
.goreleaser.yaml
73 lines (69 loc) · 1.94 KB
/
.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: 2
project_name: kubectl-ai
release:
github:
owner: sozercan
name: kubectl-ai
builds:
- id: kubectl-ai
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=0
- GO111MODULE=on
ldflags: -s -w
-X github.com/sozercan/kubectl-ai/cmd/cli.version={{.Version}}
-extldflags "-static"
flags: -tags netgo -installsuffix netgo
binary: kubectl-ai
hooks: {}
archives:
- id: kubectl-ai
builds:
- kubectl-ai
format: tar.gz
format_overrides:
- goos: windows
format: zip
name_template: "{{ .Binary }}_{{ .Os }}_{{ .Arch }}"
checksum:
name_template: "{{ .ProjectName }}_checksums.txt"
algorithm: sha256
brews:
- repository:
owner: sozercan
name: kubectl-ai
branch: "chore-brew-{{ .Tag }}"
pull_request:
enabled: true
base:
owner: sozercan
name: kubectl-ai
branch: main
commit_author:
name: Sertac Ozercan
email: [email protected]
description: "kubectl-ai is a kubectl plugin to generate and apply Kubernetes manifests using large language models."
caveats: "This plugin requires an OpenAI key or a local OpenAI API compatible server, such as AIKit: https://github.com/sozercan/aikit"
krews:
- repository:
owner: sozercan
name: kubectl-ai
branch: "chore-krew-{{ .Tag }}"
pull_request:
enabled: true
base:
owner: sozercan
name: kubectl-ai
branch: main
commit_author:
name: Sertac Ozercan
email: [email protected]
description: "kubectl-ai is a kubectl plugin to generate and apply Kubernetes manifests using large language models."
short_description: "Generate and apply manifests using large language models."
caveats: "This plugin requires an OpenAI key or a local OpenAI API compatible server, such as AIKit: https://github.com/sozercan/aikit"