From f56c6c4dfd17e19776f39da604e8f4b006b94e74 Mon Sep 17 00:00:00 2001 From: Suraj Kumar Date: Sun, 8 Feb 2026 01:16:54 +0000 Subject: [PATCH] chore: remove `ORG_` from ORG_REGISTRY_USER and ORG_REGISTRY_PASSWORD --- JShellAPI/build.gradle | 4 ++-- JShellWrapper/build.gradle | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/JShellAPI/build.gradle b/JShellAPI/build.gradle index 1aedc46..b6fb3d3 100644 --- a/JShellAPI/build.gradle +++ b/JShellAPI/build.gradle @@ -30,8 +30,8 @@ jib { to { image = 'togetherjava.org:5001/togetherjava/jshellbackend:master' ?: 'latest' auth { - username = System.getenv('ORG_REGISTRY_USER') ?: '' - password = System.getenv('ORG_REGISTRY_PASSWORD') ?: '' + username = System.getenv('REGISTRY_USER') ?: '' + password = System.getenv('REGISTRY_PASSWORD') ?: '' } } container { diff --git a/JShellWrapper/build.gradle b/JShellWrapper/build.gradle index d58b5c7..ebdbd78 100644 --- a/JShellWrapper/build.gradle +++ b/JShellWrapper/build.gradle @@ -26,8 +26,8 @@ jib { to { image = rootProject.ext.jShellWrapperImageName auth { - username = System.getenv('ORG_REGISTRY_USER') ?: '' - password = System.getenv('ORG_REGISTRY_PASSWORD') ?: '' + username = System.getenv('REGISTRY_USER') ?: '' + password = System.getenv('REGISTRY_PASSWORD') ?: '' } } container {