Преглед изворни кода

change default build method to docker

Alexander Belanger пре 4 година
родитељ
комит
2b58f2a39b
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      cli/cmd/deploy/deploy.go

+ 2 - 2
cli/cmd/deploy/deploy.go

@@ -96,8 +96,8 @@ func NewDeployAgent(client *api.Client, app string, opts *DeployOpts) (*DeployAg
 			// otherwise build type is pack
 			deployAgent.opts.Method = DeployBuildTypePack
 		} else {
-			// if the git action config does not exist, we use pack by default
-			deployAgent.opts.Method = DeployBuildTypePack
+			// if the git action config does not exist, we use docker by default
+			deployAgent.opts.Method = DeployBuildTypeDocker
 		}
 	}