diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 1da65cc..c8e6a1f 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -63,6 +63,24 @@ jobs: echo "${{ secrets.YML_JWT }}" > ./application-jwt.yml shell: bash + # 환경별 yml 파일 생성(4) - mail + - name: make application-jwt.yml + if: contains(github.ref, 'develop') + run: | + cd ./src/main/resources + touch ./application-jwt.yml + echo "${{ secrets.YML_MAIL }}" > ./application-mail.yml + shell: bash + + # 환경별 yml 파일 생성(5) - oauth + - name: make application-jwt.yml + if: contains(github.ref, 'develop') + run: | + cd ./src/main/resources + touch ./application-oauth.yml + echo "${{ secrets.YML.OAUTH }}" > ./application-oauth.yml + shell: bash + # gradle build - name: Build with Gradle run: ./gradlew build -x test