From 3287a3c7b0e868983b4db3b6e9f0e7b26d16d086 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:31:12 +0100 Subject: [PATCH] chore(release): add release options to coolify config - get version from env by default - add release channel --- config/coolify.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/coolify.php b/config/coolify.php index 49531db51..c390d6c36 100644 --- a/config/coolify.php +++ b/config/coolify.php @@ -3,7 +3,8 @@ declare(strict_types=1); return [ - 'version' => '5.0.0-alpha.1', + 'version' => env('COOLIFY_VERSION', '5.0.0-alpha.1'), + 'channel' => env('COOLIFY_CHANNEL', 'stable'), 'helper_version' => '2.0.0', 'self_hosted' => env('SELF_HOSTED', true), 'autoupdate' => env('AUTOUPDATE_ENABLED', false),