Refactor ApplicationDeploymentJob to conditionally notify team on DeploymentSuccess
This commit is contained in:
parent
2b74ca2746
commit
fbf64f8037
@ -1965,7 +1965,10 @@ COPY ./nginx.conf /etc/nginx/conf.d/default.conf");
|
||||
if (!$this->only_this_server) {
|
||||
$this->deploy_to_additional_destinations();
|
||||
}
|
||||
$this->application->environment->project->team?->notify(new DeploymentSuccess($this->application, $this->deployment_uuid, $this->preview));
|
||||
if (!isCloud()) {
|
||||
// TODO: turn off until we have a better solution
|
||||
$this->application->environment->project->team?->notify(new DeploymentSuccess($this->application, $this->deployment_uuid, $this->preview));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user