diff --git a/config/sentry.php b/config/sentry.php index f5ec7b6ab..b34772125 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -7,7 +7,7 @@ return [ // The release version of your application // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) - 'release' => '4.0.0-beta.52', + 'release' => '4.0.0-beta.53', // When left empty or `null` the Laravel environment will be used 'environment' => config('app.env'), diff --git a/config/version.php b/config/version.php index 42439e4bb..c90e8cda6 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@ whereRelation('source', 'is_public', false); if ($x_github_event === 'push') { $applications = $applications->where('git_branch', $branch)->get(); + if ($applications->isEmpty()) { + return response("Nothing to do. No applications found with branch '$branch'."); + } } if ($x_github_event === 'pull_request') { $applications = $applications->where('git_branch', $base_branch)->get(); + if ($applications->isEmpty()) { + return response("Nothing to do. No applications found with branch '$base_branch'."); + } } - if ($applications->isEmpty()) { - return response("Nothing to do. No applications found with branch '$base_branch'."); - } + foreach ($applications as $application) { $isFunctional = $application->destination->server->isFunctional(); if (!$isFunctional) { diff --git a/versions.json b/versions.json index 49b23e57d..08a738489 100644 --- a/versions.json +++ b/versions.json @@ -4,7 +4,7 @@ "version": "3.12.36" }, "v4": { - "version": "4.0.0-beta.52" + "version": "4.0.0-beta.53" } } }