Skip to content

Commit 8eee540

Browse files
committed
Fix building github-release
1 parent 2708894 commit 8eee540

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,9 @@ docker-push-version: docker
282282
$(RELEASE): $(GOBUILDDIR) $(SOURCES) $(GHRELEASE)
283283
GOPATH=$(GOBUILDDIR) go build -o $(RELEASE) $(REPOPATH)/tools/release
284284

285+
.PHONY: build-ghrelease
286+
build-ghrelease: $(GHRELEASE)
287+
285288
$(GHRELEASE): $(GOBUILDDIR)
286289
GOPATH=$(GOBUILDDIR) go build -o $(GHRELEASE) github.com/aktau/github-release
287290

tools/release/release.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ func main() {
6262
"IMAGETAG": version,
6363
"MANIFESTPATH": "manifests/arango-operator.yaml",
6464
})
65+
make("build-ghrelease", nil)
6566
gitCommitAll(fmt.Sprintf("Updated manifest to %s", version)) // Commit manifest
6667
gitTag(version)
6768
githubCreateRelease(version)

0 commit comments

Comments
 (0)