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

Do not publish releases

This commit is contained in:
ajanikow 2020-08-19 15:30:05 +00:00
parent 2a026d32de
commit c996c0e894

View file

@ -221,16 +221,6 @@ func githubCreateRelease(version string) {
log.Fatalf("Failed to upload asset '%s': %v\n", name, err)
}
}
// Finalize release
args = []string{
"edit",
"--user", ghUser,
"--repo", ghRepo,
"--tag", version,
}
if err := run(ghRelease, args, nil); err != nil {
log.Fatalf("Failed to finalize github release: %v\n", err)
}
}
func run(cmd string, args []string, envVars map[string]string) error {