Skip to content

Commit

Permalink
Merge e403c2a into f26e2b5
Browse files Browse the repository at this point in the history
  • Loading branch information
maruina authored Dec 15, 2019
2 parents f26e2b5 + e403c2a commit 8e9cc77
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build customization
builds:
- main: ./cmd/infrabin/main.go
- main: ./cmd/go-infrabin/main.go
binary: go-infrabin
goos:
- windows
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
deploy:
- provider: script
skip_cleanup: true
script: curl -sL https://git.io/goreleaser | bash
script: make go-mod-tidy && curl -sL https://git.io/goreleaser | bash
on:
tags: true
condition: "$TRAVIS_OS_NAME = linux"
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,11 @@ dep-ci: dep
go get golang.org/x/tools/cmd/cover
go get github.com/mattn/goveralls

# Clean go.mod
go-mod-tidy:
@go mod tidy -v
@git diff HEAD
@git diff-index --quiet HEAD

clean:
rm -f $(BINARY_NAME)

0 comments on commit 8e9cc77

Please sign in to comment.