Merge pull request #1562 from roycaihw/deprecate-go-get

Use `go install` instead of `go get`
This commit is contained in:
Kubernetes Prow Robot 2021-10-04 09:25:09 -07:00 committed by GitHub
commit 8a36dfb113
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ source scripts/util/changelog.sh
source scripts/util/common.sh
util::common::check_sed
go get k8s.io/release/cmd/release-notes
go install k8s.io/release/cmd/release-notes@latest
TARGET_RELEASE=${TARGET_RELEASE:-"v$(grep "^CLIENT_VERSION = \"" scripts/constants.py | sed "s/CLIENT_VERSION = \"//g" | sed "s/\"//g")"}