Skip to content

Commit

Permalink
Adds goreleaser configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Gowiem committed Jun 20, 2020
1 parent bc872fc commit 15baca4
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
before:
hooks:
# You may remove this if you don't use go modules.
- go mod download
# you may remove this if you don't need go generate
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
archives:
- name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
brews:
- github:
owner: masterpointio
name: homebrew-tap
description: Easily run one-off tasks against an ECS Task Definition.
homepage: https://github.com/masterpointio/ecsrun
test: |
system "#{bin}/ecsrun --version"

0 comments on commit 15baca4

Please sign in to comment.