From 4f251f1dd08cf812a7fac38badf4c37f978a5f8a Mon Sep 17 00:00:00 2001 From: EunHyunsu Date: Tue, 15 Oct 2024 23:47:02 +0900 Subject: [PATCH] =?UTF-8?q?HOTFIX:=20CI/CD=20=EC=8A=A4=ED=81=AC=EB=A6=BD?= =?UTF-8?q?=ED=8A=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/github-actions.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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