Skip to content

Commit 9d6f326

Browse files
authored
Merge pull request #105 from bgokden/develop
Use install comment
2 parents 960d6f8 + 350a947 commit 9d6f326

File tree

3 files changed

+257
-4
lines changed

3 files changed

+257
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- run: ./semver_version.sh -l go -f "./semver/version.go" -o none
1717
- run: sudo apt-get update && sudo apt-get install -y git bash curl build-essential
1818
- run: ./build.sh local
19-
- run: go get -u github.com/tcnksm/ghr
19+
- run: go install github.com/tcnksm/ghr
2020
- run: mkdir -p ./artifacts
2121
- run: cp ./bin/* ./artifacts
2222
- run: git config user.email "${GITHUB_EMAIL}"

go.mod

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,24 @@ require (
66
github.com/bgokden/go-cache v2.1.1+incompatible
77
github.com/chewxy/math32 v1.0.8
88
github.com/goburrow/cache v0.1.3
9-
github.com/golang/protobuf v1.5.2
9+
github.com/golang/protobuf v1.5.3
1010
github.com/google/uuid v1.1.2
1111
github.com/gorilla/mux v1.7.2
1212
github.com/jinzhu/copier v0.0.0-20201025035756-632e723a6687
1313
github.com/kr/pretty v0.2.0 // indirect
14+
github.com/mattn/go-isatty v0.0.18 // indirect
1415
github.com/mitchellh/go-homedir v1.1.0
1516
github.com/pkg/errors v0.9.1
1617
github.com/spf13/cobra v1.7.0
1718
github.com/spf13/viper v1.8.1
1819
github.com/stretchr/testify v1.7.0
20+
github.com/tcnksm/ghr v0.16.0 // indirect
1921
github.com/tidwall/gjson v1.9.3
20-
google.golang.org/grpc v1.38.0
21-
google.golang.org/protobuf v1.26.0
22+
golang.org/x/crypto v0.8.0 // indirect
23+
golang.org/x/oauth2 v0.7.0 // indirect
24+
golang.org/x/sync v0.2.0 // indirect
25+
golang.org/x/sys v0.8.0 // indirect
26+
google.golang.org/grpc v1.47.0
27+
google.golang.org/protobuf v1.30.0
2228
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
2329
)

0 commit comments

Comments
 (0)