From 723a85917dee9d4c78196e5a566c8e15574827a4 Mon Sep 17 00:00:00 2001 From: Suraj Kumar Date: Sun, 8 Feb 2026 01:02:34 +0000 Subject: [PATCH] chore: remove _ORG from ORG_REGISTRY_USER and ORG_REGISTRY_PASSWORD --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index e85213b..0c7b36c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -26,8 +26,8 @@ jib { to { image = outputImage auth { - username = System.getenv('ORG_REGISTRY_USER') ?: '' - password = System.getenv('ORG_REGISTRY_PASSWORD') ?: '' + username = System.getenv('REGISTRY_USER') ?: '' + password = System.getenv('REGISTRY_PASSWORD') ?: '' } } container {