We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2462a8 commit 69eec07Copy full SHA for 69eec07
.goreleaser.yml
@@ -3,7 +3,7 @@ before:
3
- go mod tidy
4
- go mod download
5
builds:
6
- - id: binary
+ - id: linux-binary
7
main: ./cmd/ansible-operator/
8
binary: ansible-operator
9
asmflags: "{{ .Env.GO_BUILD_ASMFLAGS }}"
@@ -17,6 +17,18 @@ builds:
17
- arm64
18
- ppc64le
19
- s390x
20
+ - id: darwin-binary
21
+ main: ./cmd/ansible-operator/
22
+ binary: ansible-operator
23
+ asmflags: "{{ .Env.GO_BUILD_ASMFLAGS }}"
24
+ gcflags: "{{ .Env.GO_BUILD_GCFLAGS }}"
25
+ ldflags: "{{ .Env.GO_BUILD_LDFLAGS }}"
26
+ mod_timestamp: "{{ .CommitTimestamp }}"
27
+ goos:
28
+ - darwin
29
+ goarch:
30
+ - amd64
31
+ - arm64
32
dockers:
33
- image_templates:
34
- "{{ .Env.IMAGE_REPO }}:{{ .Env.IMAGE_TAG }}-amd64"
0 commit comments