Skip to content

Commit

Permalink
Add goreleaser config file
Browse files Browse the repository at this point in the history
  • Loading branch information
nejckorasa committed Jul 25, 2019
1 parent 5ca7b04 commit 64959e7
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
before:
hooks:
- go mod download
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
algorithm: sha256
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
- # Name of the project
name: fngprint

# Repository to push the tap to
github:
owner: nejckorasa
name: homebrew-tap

# Git author used to commit to the repository
commit_author:
name: nejckorasa
email: nejc.korasa@gmail.com

# Folder inside the repository to put the formula.
folder: Formula

homepage: "/~https://github.com/nejckorasa/dir-fingerprint/"

# Your app's description.
description: "Application to create and store directory fingerprint from all its files in a tree"

skip_upload: false

0 comments on commit 64959e7

Please sign in to comment.