From b85fd3d4eedd70c14d10c55c15986467ea64cb04 Mon Sep 17 00:00:00 2001 From: EpicFn Date: Fri, 10 Oct 2025 11:47:06 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20appplication-test=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/prod-server.yml | 4 ++-- src/main/resources/application-test.yml | 13 +++++-------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/prod-server.yml b/.github/workflows/prod-server.yml index 85298b85..ca095dc5 100644 --- a/.github/workflows/prod-server.yml +++ b/.github/workflows/prod-server.yml @@ -101,8 +101,8 @@ jobs: -e KAKAO_CLIENT_ID="${{secrets.OAUTH_KAKAO_CLIENT_ID}}" \ -e GOOGLE_CLIENT_ID="${{secrets.OAUTH_GOOGLE_CLIENT_ID}}" \ -e GOOGLE_CLIENT_SECRET="${{secrets.OAUTH_GOOGLE_CLIENT_SECRET}}" \ - -e KAKAO_REDIRECT_URI="${{PROD_OAUTH_KAKAO_REDIRECT_URI}}" \ - -e GOOGLE_REDIRECT_URI="${{PROD_OAUTH_GOOGLE_REDIRECT_URI}}" \ + -e KAKAO_REDIRECT_URI="${{secrets.PROD_OAUTH_KAKAO_REDIRECT_URI}}" \ + -e GOOGLE_REDIRECT_URI="${{secrets.PROD_OAUTH_GOOGLE_REDIRECT_URI}}" \ # Sentry -e SENTRY_DSN="${{secrets.SENTRY_DSN}}" \ # OpenAI diff --git a/src/main/resources/application-test.yml b/src/main/resources/application-test.yml index 220e4820..b17a6d7c 100644 --- a/src/main/resources/application-test.yml +++ b/src/main/resources/application-test.yml @@ -29,18 +29,15 @@ front: seed: enabled: false - sentry: - send-default-pii: true - environment: local - traces-sample-rate: 0.0 +sentry: + dsn : "" + send-default-pii: true + environment: local + traces-sample-rate: 0.0 sql: init: mode: never -app: - seed: - enabled: false - liveblocks: secret-key: test_dummy_liveblocks_secret_key \ No newline at end of file