Skip to content

Commit 6663d02

Browse files
committed
build: master is unstable
1 parent 6e4d623 commit 6663d02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/ci.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ func maybeSkipArchive(env build.Environment) {
395395
log.Printf("skipping because this is a PR build")
396396
os.Exit(0)
397397
}
398-
if env.Branch != "develop" && !strings.HasPrefix(env.Tag, "v1.") {
398+
if env.Branch != "master" && !strings.HasPrefix(env.Tag, "v1.") {
399399
log.Printf("skipping because branch %q, tag %q is not on the whitelist", env.Branch, env.Tag)
400400
os.Exit(0)
401401
}
@@ -459,7 +459,7 @@ func makeWorkdir(wdflag string) string {
459459
}
460460

461461
func isUnstableBuild(env build.Environment) bool {
462-
if env.Branch != "develop" && env.Tag != "" {
462+
if env.Branch != "master" && env.Tag != "" {
463463
return false
464464
}
465465
return true

0 commit comments

Comments
 (0)