-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yaml
39 lines (31 loc) · 953 Bytes
/
.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
version: 2
project_name: spacelift-operator
builds:
- main: ./cmd
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64
- arm64
ldflags:
- -s -w -X github.com/spacelift-io/spacelift-operator/internal/build.Version={{.Version}}
changelog:
sort: asc
filters:
exclude:
- "^docs(\\(.+?\\))?:"
- "^test(\\(.+?\\))?:"
- "^chore(\\(.+?\\))?:"
- "^refactor(\\(.+?\\))?:"
release:
header: |
## Installation
The latest container image can be found at `public.ecr.aws/spacelift/spacelift-operator:{{ .Tag }}`, and the latest set of manifests can be found at https://downloads.spacelift.io/spacelift-operator/{{ .Tag }}/manifests.yaml.
To install the controller, run the following command:
```shell
kubectl apply -f https://downloads.spacelift.io/spacelift-operator/{{ .Tag }}/manifests.yaml
```
extra_files:
- glob: ./build/manifests/manifests.yaml