1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Fix building github-release

This commit is contained in:
Ewout Prangsma 2018-03-13 14:45:43 +01:00
parent 2708894e3e
commit 8eee5405e0
No known key found for this signature in database
GPG key ID: 4DBAD380D93D0698
2 changed files with 4 additions and 0 deletions

View file

@ -282,6 +282,9 @@ docker-push-version: docker
$(RELEASE): $(GOBUILDDIR) $(SOURCES) $(GHRELEASE)
GOPATH=$(GOBUILDDIR) go build -o $(RELEASE) $(REPOPATH)/tools/release
.PHONY: build-ghrelease
build-ghrelease: $(GHRELEASE)
$(GHRELEASE): $(GOBUILDDIR)
GOPATH=$(GOBUILDDIR) go build -o $(GHRELEASE) github.com/aktau/github-release

View file

@ -62,6 +62,7 @@ func main() {
"IMAGETAG": version,
"MANIFESTPATH": "manifests/arango-operator.yaml",
})
make("build-ghrelease", nil)
gitCommitAll(fmt.Sprintf("Updated manifest to %s", version)) // Commit manifest
gitTag(version)
githubCreateRelease(version)