Skip to content

Commit

Permalink
.goreleaser.yml: do not include version in archive name
Browse files Browse the repository at this point in the history
  • Loading branch information
skatsuta committed Aug 5, 2017
1 parent 55e11b5 commit fa5560f
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,24 @@ builds:
goos:
- darwin
- linux
# - windows
goarch:
- 386
- amd64
ignore:
- 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:
Expand All @@ -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"

0 comments on commit fa5560f

Please sign in to comment.