From 45d2f80f696988ed58c1c82d6156db8555b611ad Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 4 Dec 2023 11:41:44 +0100 Subject: [PATCH] fix: missing docker image thing --- config/sentry.php | 2 +- config/version.php | 2 +- .../livewire/project/application/general.blade.php | 12 +++++++----- versions.json | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/config/sentry.php b/config/sentry.php index 23bd8822a..f9a87fa0e 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.152', + 'release' => '4.0.0-beta.153', // 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 452cdd822..5623e4699 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@ @endif - @if ($application->build_pack !== 'dockerimage' && $application->build_pack !== 'dockercompose') + @if ($application->build_pack !== 'dockercompose')

Docker Registry

@if ($application->destination->server->isSwarm()) -
Docker Swarm requires the image to be available in a registry. More info here.
- @else -
Push the built image to a docker registry. More info Docker Swarm requires the image to be available in a registry. More info here.
+ @else + @if ($application->build_pack !== 'dockerimage') +
Push the built image to a docker registry. More info here.
+ @endif @endif
@if ($application->build_pack === 'dockerimage') diff --git a/versions.json b/versions.json index 51c9a84ee..fb9be4be3 100644 --- a/versions.json +++ b/versions.json @@ -4,7 +4,7 @@ "version": "3.12.36" }, "v4": { - "version": "4.0.0-beta.152" + "version": "4.0.0-beta.153" } } }