This commit is contained in:
Andras Bacsai
2023-05-30 15:52:17 +02:00
parent 6e72889294
commit 0f50d1accd
36 changed files with 715 additions and 273 deletions

View File

@@ -37,12 +37,9 @@ class Deploy extends Component
$this->set_deployment_uuid();
queue_application_deployment(
application: $this->application,
extra_attributes: [
'deployment_uuid' => $this->deployment_uuid,
'application_uuid' => $this->application->uuid,
'force_rebuild' => $force,
]
application_id: $this->application->id,
deployment_uuid: $this->deployment_uuid,
force_rebuild: $force,
);
return redirect()->route('project.application.deployments', [
'project_uuid' => $this->parameters['project_uuid'],