From fa5560f637e3c6a87806684f9ad7992308c5a97d Mon Sep 17 00:00:00 2001 From: Soshi Katsuta Date: Sun, 6 Aug 2017 03:32:38 +0900 Subject: [PATCH] .goreleaser.yml: do not include version in archive name --- .goreleaser.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 6127e64..ef26ca0 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -3,6 +3,7 @@ builds: goos: - darwin - linux + # - windows goarch: - 386 - amd64 @@ -10,12 +11,16 @@ builds: - goos: darwin goarch: 386 archive: - format: zip + name_template: '{{ .Binary }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}' replacements: - 386: 32-bit - amd64: 64-bit darwin: macOS linux: Linux + windows: Windows + 386: 32-bit + amd64: 64-bit + format_overrides: + - goos: windows + format: zip release: draft: false brew: @@ -24,6 +29,7 @@ brew: name: homebrew-athenai folder: Formula homepage: https://github.com/skatsuta/athenai - description: Athenai is a simple and easy-to-use command line tool that runs SQL statements on Amazon Athena. + description: | + Athenai is a simple and easy-to-use command line tool that runs SQL query statements on Amazon Athena. install: | bin.install "athenai"