Skip to content

Commit

Permalink
Add goreleaser to go.mod
Browse files Browse the repository at this point in the history
Not a direct dependency, but we might as well pin it.
  • Loading branch information
klauspost committed Jul 31, 2019
1 parent af14441 commit b8ec60c
Show file tree
Hide file tree
Showing 3 changed files with 257 additions and 7 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ clean:

generate: install
go install github.com/tinylib/msgp
go install github.com/goadesign/goa/goagen
go generate ${PROJECT}
go generate ${PROJECT}/api
goimports -w .
Expand All @@ -39,6 +40,7 @@ build: install
${BUILD_ARCH} go build -o bin/go-ranks-cli ${PROJECT}/api/tool/rankdb-cli

dist: build
go install github.com/goreleaser/goreleaser
goreleaser --snapshot --skip-publish --rm-dist

install:
Expand All @@ -48,3 +50,7 @@ install:

commit:
@echo ${COMMIT_SHORT}

push-image:
docker push ${IMAGE}:${VERSION}
docker push ${IMAGE}:latest
13 changes: 6 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,29 @@ require (
github.com/BurntSushi/toml v0.3.1
github.com/aerospike/aerospike-client-go v2.2.0+incompatible
github.com/armon/go-metrics v0.0.0-20170913184837-0a12dc6f6b9d // indirect
github.com/aws/aws-sdk-go v0.0.0-20170929222832-5a2026bfb28e
github.com/aws/aws-sdk-go v1.19.16
github.com/cenkalti/backoff v0.0.0-20170921171023-61ba96c4d100
github.com/dgraph-io/badger v1.6.0
github.com/dgrijalva/jwt-go v0.0.0-20170608005149-a539ee1a749a
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/dimfeld/httppath v0.0.0-20170720192232-ee938bf73598 // indirect
github.com/dimfeld/httptreemux v4.0.1+incompatible // indirect
github.com/etcd-io/bbolt v1.3.3
github.com/go-ini/ini v1.42.0 // indirect
github.com/goadesign/goa v1.4.1
github.com/gofrs/uuid v3.2.0+incompatible // indirect
github.com/google/go-cmp v0.0.0-20170718200728-1a281611eb75
github.com/google/go-cmp v0.3.0
github.com/google/gxui v0.0.0-20151028112939-f85e0a97b3a4 // indirect
github.com/goreleaser/goreleaser v0.113.0
github.com/hashicorp/go-immutable-radix v0.0.0-20170725221215-8aac27015308 // indirect
github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad
github.com/hashicorp/golang-lru v0.5.1
github.com/hashicorp/uuid v0.0.0-20160311170451-ebb0a03e909c // indirect
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect
github.com/klauspost/compress v1.7.4
github.com/klauspost/cpuid v1.2.1 // indirect
github.com/klauspost/readahead v1.3.0
github.com/klauspost/shutdown2 v1.1.0
github.com/manveru/faker v0.0.0-20160419072036-717f7cf83fb7 // indirect
github.com/manveru/gobdd v0.0.0-20131210092515-f1a17fdd710b // indirect
github.com/mattn/go-colorable v0.0.0-20170327083344-ded68f7a9561
github.com/mattn/go-colorable v0.0.9
github.com/mattn/go-isatty v0.0.8 // indirect
github.com/newrelic/go-agent v1.5.0
github.com/onsi/ginkgo v1.8.0 // indirect
Expand All @@ -42,6 +42,5 @@ require (
github.com/zach-klippenstein/goregen v0.0.0-20160303162051-795b5e3961ea // indirect
go.etcd.io/bbolt v1.3.3 // indirect
golang.org/x/lint v0.0.0-20190409202823-959b441ac422
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
gopkg.in/ini.v1 v1.42.0 // indirect
)
Loading

0 comments on commit b8ec60c

Please sign in to comment.