From ad7b39549e2ed3d645641ad16f5f8f014c5f84cd Mon Sep 17 00:00:00 2001 From: seungjo Date: Sat, 20 Jul 2024 18:19:06 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20resource=20=ED=8F=B4=EB=8D=94=20?= =?UTF-8?q?=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1192291..058dbba 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,7 +25,9 @@ jobs: distribution: 'temurin' - name: application.properties 파일 생성 - run: echo "${{ secrets.APPLICATION_PROPERTIES }}" > ./src/main/resources/application.properties + run: | + mkdir -p ./src/main/resources + echo "${{ secrets.APPLICATION_PROPERTIES }}" > ./src/main/resources/application.properties # 테스트 및 빌드 진행 (gradle) - name: Build with Gradle