Skip to content

Commit

Permalink
added Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
hassansin committed Jul 29, 2017
1 parent b0e5bfe commit 2f3169d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
builds:
- binary: drum-roll
goos:
- windows
- darwin
- linux
goarch:
- amd64
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@


.PHONY: setup test release

setup:
go get -u github.com/govend/govend
go get -u github.com/goreleaser/goreleaser
govend

# make release tag=v0.0.1
release:
git tag -a $(tag) -m $(tag) && git push origin $(tag) && goreleaser

0 comments on commit 2f3169d

Please sign in to comment.