Skip to content

Commit

Permalink
Remove go tidy from release step (#732)
Browse files Browse the repository at this point in the history
* Remove go tidy from release step

Bump goreleaser to the latest version

Signed-off-by: João Pereira <joaod@vmware.com>

* Specify the tag being used for a release

Signed-off-by: João Pereira <joaod@vmware.com>

---------

Signed-off-by: João Pereira <joaod@vmware.com>
  • Loading branch information
joaopapereira authored and kumari tanushree committed Jun 19, 2023
1 parent abc7917 commit f30497b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
5 changes: 0 additions & 5 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# This is an example .goreleaser.yml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
before:
hooks:
- go fmt ./cmd/... ./pkg/... ./test/...
- go mod vendor
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
Expand Down
6 changes: 1 addition & 5 deletions hack/build-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ function get_latest_git_tag {
git describe --tags | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+'
}

VERSION="${1:-`get_latest_git_tag`}"

go fmt ./cmd/... ./pkg/... ./test/...
go mod vendor
go mod tidy
VERSION="${1:-$(get_latest_git_tag)}"

# makes builds reproducible
export CGO_ENABLED=0
Expand Down

0 comments on commit f30497b

Please sign in to comment.