forked from KusionStack/kusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
120 lines (114 loc) · 3.35 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# This is an example .goreleaser.yml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
- go generate ./pkg/version
builds:
- id: default
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
# 使用 ldflags="-s -w" 去掉符号表和调试信息,以减少发布包的大小
ldflags:
- -s
- -w
ignore:
- goos: linux
goarch: arm64
- goos: windows
goarch: arm64
main: .
archives:
- id: default
builds:
- default
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
changelog:
use: github
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
release:
github:
owner: KusionStack
name: kusion
draft: false
footer: |
## Docker Images
* `kusionstack/kusion:{{ .Env.KUSION_VERSION }}`
## Dependent version
* [kcl-go](https://github.com/kcl-lang/kcl-go): `{{ .Env.KCL_GO_VERSION }}`
* [kcl-plugin](https://github.com/kcl-lang/kcl-plugin): `{{ .Env.KCL_PLUGIN_VERSION }}`
dockers:
- use: buildx
goos: linux
goarch: amd64
dockerfile: Dockerfile
image_templates:
- kusionstack/{{ .ProjectName }}:{{ .Tag }}-amd64
build_flag_templates:
- "--target=goreleaser"
- "--pull"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.name={{.ProjectName}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--label=org.opencontainers.image.source={{.GitURL}}"
- "--platform=linux/amd64"
docker_manifests:
- use: docker
name_template: kusionstack/{{ .ProjectName }}:{{ .Tag }}
image_templates:
- kusionstack/{{ .ProjectName }}:{{ .Tag }}-amd64
- use: docker
name_template: kusionstack/{{ .ProjectName }}:latest
image_templates:
- kusionstack/{{ .ProjectName }}:{{ .Tag }}-amd64
brews:
- tap:
owner: KusionStack
name: homebrew-tap
url_template: "https://github.com/KusionStack/kusion/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
download_strategy: CurlDownloadStrategy
# Git author used to commit to the repository.
# Defaults are shown.
commit_author:
name: GoReleaser Bot
email: [email protected]
folder: HomebrewFormula
homepage: "https://github.com/KusionStack/kusion"
description: "Codify and deliver intentions to Kubernetes and Clouds"
license: "Apache License"
skip_upload: false
test: |
system "#{bin}/kusion version"
scoop:
url_template: "https://github.com/KusionStack/kusion/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
bucket:
owner: KusionStack
name: scoop-bucket
branch: main
token: "{{ .Env.GITHUB_TOKEN }}"
folder: Scoops
commit_author:
name: goreleaserbot
email: [email protected]
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "http://github.com/KusionStack/kusion"
description: "Codify and deliver intentions to Kubernetes and Clouds."
license: Apache License 2.0