github.com/hellofresh/janus@v0.0.0-20230925145208-ce8de8183c67/.goreleaser.yml (about) 1 project_name: janus 2 3 builds: 4 - id: binary-build 5 main: main.go 6 binary: janus 7 ldflags: 8 - -s -w -X main.version={{.Version}} 9 env: 10 - CGO_ENABLED=0 11 goos: 12 - linux 13 - darwin 14 - windows 15 - freebsd 16 - openbsd 17 goarch: 18 - amd64 19 - arm 20 - arm64 21 - 386 22 ignore: 23 - goos: darwin 24 goarch: 386 25 - goos: freebsd 26 goarch: arm64 27 28 dockers: 29 - goos: linux 30 goarch: amd64 31 binaries: 32 - janus 33 image_templates: 34 - "hellofreshtech/janus:latest" 35 - "hellofreshtech/janus:{{.Tag}}" 36 dockerfile: Dockerfile 37 38 changelog: 39 sort: asc 40 filters: 41 exclude: 42 - Merge pull request 43 - Merge branch