From 252695fa0f24fe0e78d62623d5f882f7df145d7b Mon Sep 17 00:00:00 2001 From: JeongHunHui Date: Tue, 13 Aug 2024 23:41:07 +0900 Subject: [PATCH 1/2] =?UTF-8?q?HOTFIX:=20yml=EB=82=B4=EC=9A=A9=20=ED=99=95?= =?UTF-8?q?=EC=9D=B8=EC=9D=84=20=EC=9C=84=ED=95=9C=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev_deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml index a6567867..d82a1264 100644 --- a/.github/workflows/dev_deploy.yml +++ b/.github/workflows/dev_deploy.yml @@ -37,6 +37,10 @@ jobs: run: | echo "${{ env.SECRET_YML_CONTENT }}" > src/main/resources/application-secret.yml + - name: yml 확인 + run: | + cat src/main/resources/application-secret.yml + - name: Set up newrelic.yml run: | echo "${{ env.NEW_RELIC_YML }}" > newrelic/newrelic.yml From 3e7676328bb64330e87ec212e6517c6f94f14cb1 Mon Sep 17 00:00:00 2001 From: JeongHunHui Date: Tue, 13 Aug 2024 23:55:53 +0900 Subject: [PATCH 2/2] =?UTF-8?q?HOTFIX:=20secret.yml=EC=9D=84=20=EB=84=A3?= =?UTF-8?q?=EB=8A=94=20=EC=BD=94=EB=93=9C=EB=A5=BC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev_deploy.yml | 7 +------ .github/workflows/prod_deploy.yml | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml index d82a1264..f69f1fd0 100644 --- a/.github/workflows/dev_deploy.yml +++ b/.github/workflows/dev_deploy.yml @@ -35,12 +35,7 @@ jobs: - name: application-secret.yml 등록 run: | - echo "${{ env.SECRET_YML_CONTENT }}" > src/main/resources/application-secret.yml - - - name: yml 확인 - run: | - cat src/main/resources/application-secret.yml - + echo "${SECRET_YML_CONTENT}" > src/main/resources/application-secret.yml - name: Set up newrelic.yml run: | echo "${{ env.NEW_RELIC_YML }}" > newrelic/newrelic.yml diff --git a/.github/workflows/prod_deploy.yml b/.github/workflows/prod_deploy.yml index f6e06a20..254116cf 100644 --- a/.github/workflows/prod_deploy.yml +++ b/.github/workflows/prod_deploy.yml @@ -38,7 +38,7 @@ jobs: - name: application-secret.yml 등록 run: | - echo "${{ env.SECRET_YML_CONTENT }}" > src/main/resources/application-secret.yml + echo "${SECRET_YML_CONTENT}" > src/main/resources/application-secret.yml - name: Set up newrelic.yml run: |