diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6dbb9ee1..2bed197c 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,20 +19,19 @@ jobs: distribution: 'corretto' java-version: '17' - - name: create application.yml - run: | - # create application.yml - # mkdir ./src/main/resources + - name: create application-secret.yml + run: + # create application-secret.yml cd ./src/main/resources - # application.yml 파일 생성 - # touch ./application.yml + # application-secret.yml 파일 생성 + touch ./application-secret.yml - # GitHub-Actions 에서 설정한 값을 application.yml 파일에 쓰기 - # echo "${{ secrets.CI_APPLICATION }}" >> ./application.yml + # GitHub-Actions 에서 설정한 값을 application-secret.yml 파일에 쓰기 + # echo "${{ secrets.CI_APPLICATION }}" >> ./application-secret.yml # application.yml 파일 확인 - cat ./application.yml + cat ./application-secret.yml shell: bash - name: build