File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -15,3 +15,5 @@ __debug_bin
15
15
/examples /sample /certs.sh
16
16
crossplane-provider-btp-account.iml
17
17
/test /e2e /testdata /secrets
18
+
19
+ dist /
Original file line number Diff line number Diff line change
1
+ # Visit https://goreleaser.com for documentation on how to customize this
2
+ # behavior.
3
+ version : 2
4
+
5
+ builds :
6
+ - id : binary-build
7
+ env :
8
+ - CGO_ENABLED=0
9
+ mod_timestamp : " {{ .CommitTimestamp }}"
10
+ main : ./cmd/provider
11
+ flags :
12
+ - -trimpath
13
+ goos :
14
+ - linux
15
+ - darwin
16
+ goarch :
17
+ - amd64
18
+ - arm64
19
+ ignore :
20
+ - goos : darwin
21
+ goarch : " 386"
22
+ binary : " {{ .ProjectName }}_v{{ .Version }}"
23
+ archives :
24
+ - format : zip
25
+ builds :
26
+ - binary-build
27
+ name_template : " {{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
28
+ changelog :
29
+ use : github-native
You can’t perform that action at this time.
0 commit comments