aboutsummaryrefslogtreecommitdiffstats
path: root/build/ci.go
diff options
context:
space:
mode:
Diffstat (limited to 'build/ci.go')
-rw-r--r--build/ci.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/ci.go b/build/ci.go
index 9d1543ea4..8ddc50a0c 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -395,7 +395,7 @@ func maybeSkipArchive(env build.Environment) {
log.Printf("skipping because this is a PR build")
os.Exit(0)
}
- if env.Branch != "develop" && !strings.HasPrefix(env.Tag, "v1.") {
+ if env.Branch != "master" && !strings.HasPrefix(env.Tag, "v1.") {
log.Printf("skipping because branch %q, tag %q is not on the whitelist", env.Branch, env.Tag)
os.Exit(0)
}
@@ -459,7 +459,7 @@ func makeWorkdir(wdflag string) string {
}
func isUnstableBuild(env build.Environment) bool {
- if env.Branch != "develop" && env.Tag != "" {
+ if env.Branch != "master" && env.Tag != "" {
return false
}
return true