Skip to content
This repository has been archived by the owner on Mar 28, 2020. It is now read-only.

Commit

Permalink
Implement goreleaser
Browse files Browse the repository at this point in the history
Signed-off-by: Valentin Pichard <[email protected]>
  • Loading branch information
Valentin Pichard committed Jan 11, 2019
1 parent 2456511 commit 2958e4f
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@

Dockerfile.dev
output.txt
puma-helper
puma-helper
dist/
36 changes: 36 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# .goreleaser.yaml
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- 386
- amd64
checksum:
name_template: '{{ .ProjectName }}_checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
archive:
name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
replacements:
linux: Linux
amd64: x86_64
nfpm:
name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
homepage: https://github.com/dimelo/puma-helper
description: Puma-Helper CLI aims to implement missing centralized and human readeable features from pumactl in one place.
maintainer: Valentin Pichard <[email protected]>
license: MIT
vendor: Puma-Helper
formats:
- deb
- rpm
dependencies:
- git
recommends:
- rpm

0 comments on commit 2958e4f

Please sign in to comment.