From d7b9ed032d8d2ee0321413c37a6ade07daaa2162 Mon Sep 17 00:00:00 2001 From: SEAN Date: Mon, 19 Jan 2026 13:00:15 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20Jenkinsfile=20=EC=88=98=EC=A0=95=20(#2?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d6afbc5..7b49634 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,10 +21,8 @@ pipeline { TARGET_BUILD_CONTAINER = 'spms-back-build-release' TARGET_RUN_CONTAINER = 'spms-run-release' echo ">>> [PROD Mode] SET Release Container" - } else { - error "This branch(${branchName}) can't set container (USE develop or main branch)" } - else if (branchName == 'staging') { + else if (branchName.startsWith('hotfix/') || branchName.startsWith('release/')) { TARGET_BUILD_CONTAINER = 'spms-back-build-staging' TARGET_RUN_CONTAINER = 'spms-run-staging' echo "[STG Mode] SET STAGING Container"