fix(relative-path): not deploy git stack via unpacker EE-6043 (#10195)

This commit is contained in:
cmeng
2023-08-29 11:49:00 +12:00
committed by GitHub
parent a8c6bd8082
commit 4ca45e89c5
7 changed files with 17 additions and 10 deletions

View File

@@ -84,7 +84,7 @@ func (config *ComposeStackDeploymentConfig) Deploy() error {
return err
}
}
if stackutils.IsGitStack(config.stack) {
if stackutils.IsRelativePathStack(config.stack) {
return config.StackDeployer.DeployRemoteComposeStack(config.stack, config.endpoint, config.registries, config.forcePullImage, config.ForceCreate)
}