-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
A.A.Abroskin
committed
Feb 14, 2019
1 parent
d523f0f
commit b91f38a
Showing
3 changed files
with
73 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,3 @@ | |
|
||
tmp/ | ||
dist/ | ||
.goreleaser.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
before: | ||
hooks: | ||
- go generate ./... | ||
builds: | ||
- env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
- darwin | ||
- windows | ||
archive: | ||
replacements: | ||
windows: Windows | ||
darwin: MacOS | ||
linux: Linux | ||
386: i386 | ||
amd64: x86_64 | ||
format_overrides: | ||
- goos: windows | ||
format: zip | ||
checksum: | ||
name_template: '{{ .ProjectName }}_checksums.txt' | ||
snapshot: | ||
name_template: "{{ .Tag }}" | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- '^docs:' | ||
- '^test:' | ||
- '^spec:' | ||
- '^tmp:' | ||
- '^context:' | ||
|
||
brew: | ||
github: | ||
owner: Arkweid | ||
name: homebrew-hookah | ||
homepage: "https://github.com/Arkweid/hookah" | ||
description: "Simple git hooks manager" | ||
folder: Formula | ||
test: | | ||
system "#{bin}/hookah -v" | ||
snapcraft: | ||
name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}' | ||
summary: For rule your git hooks | ||
description: | | ||
Simple git hooks manager. | ||
grade: stable | ||
confinement: strict | ||
publish: true | ||
|
||
nfpm: | ||
name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}' | ||
homepage: https://github.com/Arkweid/hookah | ||
description: Simple git hooks manager | ||
maintainer: Alexander Abroskin <[email protected]> | ||
license: MIT | ||
vendor: Arkweid | ||
formats: | ||
- deb | ||
- rpm | ||
dependencies: | ||
- git | ||
recommends: | ||
- rpm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters