diff options
-rw-r--r-- | .goreleaser.yml | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/.goreleaser.yml b/.goreleaser.yml index d57e39f3..0a6113c1 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -21,14 +21,18 @@ builds: ldflags: - -s -w -X main.githash={{.ShortCommit}} -archive: - name_template: "{{ .Binary }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" - format: binary - files: - - none* - replacements: - 386: 32bit - amd64: 64bit +archives: + - + id: matterbridge + builds: + - matterbridge + name_template: "{{ .Binary }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" + format: binary + files: + - none* + replacements: + 386: 32bit + amd64: 64bit checksum: name_template: 'checksums.txt' |