We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b48d0da commit bb7871fCopy full SHA for bb7871f
1 file changed
.goreleaser.yaml
@@ -53,7 +53,9 @@ kos:
53
org.opencontainers.image.version: "{{.Version}}"
54
bare: true
55
preserve_import_paths: false
56
- # disable: '{{ ne (envOrDefault "GOOS" "") "linux" }}'
+ # FIXME: We use GOOS and -split in our pipeline which is causing issues with the ko integration
57
+ # so we disable it here when the GOOS is set to something other than linux. This avoids
58
+ # the ko build to fail when running on macos or windows.
59
disable: '{{ and (isEnvSet "GOOS") (ne .Env.GOOS "linux") }}'
60
platforms:
61
- linux/amd64
0 commit comments