From 6d017438c823168fab82c828993bf99fbd9123a9 Mon Sep 17 00:00:00 2001 From: hs12 Date: Sat, 3 Aug 2024 15:08:59 +0900 Subject: [PATCH] =?UTF-8?q?[chore]=20:=20test=EC=9A=A9=EA=B3=BC=20main?= =?UTF-8?q?=EC=9A=A9=20application.yml=20=EA=B5=AC=EB=B6=84=20=EC=9C=84?= =?UTF-8?q?=ED=95=B4=20secret=20=EB=B3=80=EC=88=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 6c5bc3d5..06f171d2 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -21,11 +21,11 @@ jobs: java-version: '17' distribution: 'temurin' - # yml 파일 생성 + # main 경로 application.yml 파일 생성 - name: Generate application.yml run: | mkdir -p ./src/main/resources - echo "${{ secrets.APPLICATION_YML }}" | base64 -d > ./src/main/resources/application.yml + echo "${{ secrets.MAIN_APPLICATION_YML }}" | base64 -d > ./src/main/resources/application.yml # gradle 권한 부여 - name: Grant execute permission for gradlew