diff --git a/app/Jobs/ApplicationDeploymentJob.php b/app/Jobs/ApplicationDeploymentJob.php index 90e8b176f..92c057a5f 100644 --- a/app/Jobs/ApplicationDeploymentJob.php +++ b/app/Jobs/ApplicationDeploymentJob.php @@ -273,9 +273,14 @@ COPY --from=$this->build_image_name /app/{$this->application->publish_directory} private function next(string $status) { if (!Str::of($this->application_deployment_queue->status)->startsWith('cancelled')) { + ray('Next Status: ' . $status); $this->application_deployment_queue->update([ 'status' => $status, ]); + $this->activity->properties = $this->activity->properties->merge([ + 'status' => $status, + ]); + $this->activity->save(); } dispatch(new ApplicationContainerStatusJob( application: $this->application, diff --git a/resources/views/livewire/project/application/deployment-logs.blade.php b/resources/views/livewire/project/application/deployment-logs.blade.php index 61d4842fd..8631760c0 100644 --- a/resources/views/livewire/project/application/deployment-logs.blade.php +++ b/resources/views/livewire/project/application/deployment-logs.blade.php @@ -1,12 +1,11 @@