From 71b454877b7d7e0d543249ef52d44c3be4ad87bd Mon Sep 17 00:00:00 2001 From: yuntasha <97961558+yuntasha@users.noreply.github.com> Date: Fri, 6 Oct 2023 15:07:06 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20gitaction=20=EB=B2=84=EA=B7=B8=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit resource디렉터리 없는 것을 적용하지 못함 --- .github/workflows/gradle.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 7450875..83e5fc7 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -46,7 +46,9 @@ jobs: - name: make application-dev.yml if: contains(github.ref, 'develop') run: | - cd ./src/main/resources + cd ./src/main + mkdir resources + cd ./resources touch ./application-dev.yml echo "${{ secrets.YML_DEV }}" > ./application-dev.yml shell: bash