Skip to content

Commit b41b655

Browse files
committed
close #242 deliver does not read ready from config
1 parent 0a8ab91 commit b41b655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phlow/deliver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func Deliver(conf *setting.ProjectSetting) {
5050
return
5151
}
5252
//git push origin name:ready/name
53-
_, err = git.Push(conf.Remote, fmt.Sprintf("%s:ready/%s", branchInfo.Current, branchInfo.Current))
53+
_, err = git.Push(conf.Remote, fmt.Sprintf("%s:%s/%s", branchInfo.Current, conf.DeliveryBranchPrefix, branchInfo.Current))
5454
if err != nil {
5555
fmt.Println(err)
5656
return

0 commit comments

Comments
 (0)