From 670bdb5d6603d9a6d4c7f8a13f8f648039967ef7 Mon Sep 17 00:00:00 2001 From: can019 Date: Sun, 28 Sep 2025 01:05:17 +0900 Subject: [PATCH 1/3] =?UTF-8?q?chore:=20fix=20branch=EC=97=90=EC=84=9C=20d?= =?UTF-8?q?eploy=20=EB=B9=84=ED=99=9C=EC=84=B1=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy-java.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/deploy-java.yml b/.github/workflows/deploy-java.yml index ed1e4720..25820360 100644 --- a/.github/workflows/deploy-java.yml +++ b/.github/workflows/deploy-java.yml @@ -1,9 +1,6 @@ name: Deploy on: - push: - branches: - - fix/** workflow_run: workflows: ["CI (Java)"] types: [completed] From a45c58cebbc1b557f4a6eb40da94adb20c1702b7 Mon Sep 17 00:00:00 2001 From: can019 Date: Sun, 28 Sep 2025 01:06:41 +0900 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20Log4j2=20classpath=EA=B0=80=20?= =?UTF-8?q?=EC=95=84=EB=8B=8C=20=EC=99=B8=EB=B6=80=20=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?mount?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/user-service/src/main/resources/application-production.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user-service/src/main/resources/application-production.yml b/apps/user-service/src/main/resources/application-production.yml index c53e00bb..9463232d 100644 --- a/apps/user-service/src/main/resources/application-production.yml +++ b/apps/user-service/src/main/resources/application-production.yml @@ -44,4 +44,4 @@ mybatis: map-underscore-to-camel-case: true logging: - config: classpath:log4j2-production.yml + config: file:config/log4j2-production.yml From c50f56d923f5ff45df8dcd9ba85b1b0cbaeb2f6f Mon Sep 17 00:00:00 2001 From: can019 Date: Sun, 28 Sep 2025 01:10:41 +0900 Subject: [PATCH 3/3] =?UTF-8?q?chore:=20Bootjar=EC=97=90=EC=84=9C=20log4j?= =?UTF-8?q?=20=EC=84=A4=EC=A0=95=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/user-service/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user-service/build.gradle b/apps/user-service/build.gradle index 3660ab02..cf0b538b 100644 --- a/apps/user-service/build.gradle +++ b/apps/user-service/build.gradle @@ -165,7 +165,7 @@ bootJar { exclude 'application-test-*.yml' exclude 'log4j2-test-*.yml' exclude 'application-develop.yml' - exclude 'log4j2-develop.yml' + exclude 'log4j2-*.yml' exclude 'sql/**' }