From df3dd84dfcfa117870060cee3ed87e474433fa1e Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 6 Nov 2025 09:03:17 +0100 Subject: [PATCH 1/3] rebranded gcool to jean --- gcool.json => jean.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename gcool.json => jean.json (100%) diff --git a/gcool.json b/jean.json similarity index 100% rename from gcool.json rename to jean.json From d21ab6e11b6df37d22031f3ef7311a5d9c7761fc Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 6 Nov 2025 09:04:45 +0100 Subject: [PATCH 2/3] fixed jean.json --- jean.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jean.json b/jean.json index 629d8569a..0be55f89b 100644 --- a/jean.json +++ b/jean.json @@ -1,6 +1,6 @@ { "scripts": { - "onWorktreeCreate": "cp $GCOOL_ROOT_PATH/.env .", + "onWorktreeCreate": "cp $JEAN_ROOT_PATH/.env .", "run": "docker rm -f coolify coolify-realtime coolify-minio coolify-testing-host coolify-redis coolify-db coolify-mail coolify-vite && spin up" } } From 88aa24057b9441ca8cf243d2e6837219a56865c8 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 6 Nov 2025 09:21:41 +0100 Subject: [PATCH 3/3] fix: update environment variable mapping in deployment job --- app/Jobs/ApplicationDeploymentJob.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/Jobs/ApplicationDeploymentJob.php b/app/Jobs/ApplicationDeploymentJob.php index a240a759a..08a6aa9cc 100644 --- a/app/Jobs/ApplicationDeploymentJob.php +++ b/app/Jobs/ApplicationDeploymentJob.php @@ -3289,7 +3289,10 @@ private function add_build_env_variables_to_dockerfile() } if ($envs->isNotEmpty()) { - $secrets_hash = $this->generate_secrets_hash($envs); + $envs_mapped = $envs->mapWithKeys(function ($env) { + return [$env->key => $env->real_value]; + }); + $secrets_hash = $this->generate_secrets_hash($envs_mapped); $dockerfile->splice(1, 0, ["ARG COOLIFY_BUILD_SECRETS_HASH={$secrets_hash}"]); }