We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8ec3f5 commit 8b95b3cCopy full SHA for 8b95b3c
app/Jobs/ApplicationDeploymentJob.php
@@ -316,7 +316,6 @@ private function decide_what_to_do()
316
{
317
if ($this->restart_only) {
318
$this->just_restart();
319
-
320
return;
321
} elseif ($this->pull_request_id !== 0) {
322
$this->deploy_pull_request();
@@ -737,9 +736,8 @@ private function just_restart()
737
736
$this->check_git_if_build_needed();
738
$this->generate_image_names();
739
$this->check_image_locally_or_remotely();
740
- if ($this->should_skip_build()) {
741
- return;
742
- }
+ $this->should_skip_build();
+ $this->next(ApplicationDeploymentStatus::FINISHED->value);
743
}
744
745
private function should_skip_build()
0 commit comments