diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 829107c..f218f71 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -31,8 +31,9 @@ jobs: distribution: 'corretto' #yml 파일 - name: Set yml - run: mkdir -p src/main/resources - echo "${{ secrets.APPLICATION_YML }}" | base64 --decode > src/main/resources/application-db.yml + run: | + mkdir -p src/main/resources + echo "${{ secrets.APPLICATION_YML }}" | base64 --decode > src/main/resources/application.yml find src #gradlew 파일에 실행 권한 부여 - name: Grant execute permission to gradlew