From 9f2a01cb915e69348b036a36f562c5e4de6b2a29 Mon Sep 17 00:00:00 2001 From: kimyechan Date: Thu, 23 May 2024 17:57:16 +0900 Subject: [PATCH] =?UTF-8?q?Test:=20=EA=B9=83=ED=97=88=EB=B8=8C=20CI-CD=20?= =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy-dev.yaml | 1 + .github/workflows/deploy-prod.yaml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-dev.yaml b/.github/workflows/deploy-dev.yaml index 8da95bc..0dd3715 100644 --- a/.github/workflows/deploy-dev.yaml +++ b/.github/workflows/deploy-dev.yaml @@ -25,6 +25,7 @@ jobs: mkdir -p baebae-BE/src/test/resources echo "${{ secrets.APPLICATION_YML }}" > baebae-BE/src/main/resources/application.yml echo "${{ secrets.APPLICATION_DEPLOY_YML }}" > baebae-BE/src/main/resources/application-deploy.yml + echo "${{ secrets.TEST_APPLICATION_YML }}" > baebae-BE/src/test/resources/application.yml echo "${{ secrets.APPLICATION_TEST_YML }}" > baebae-BE/src/test/resources/application-test.yml - name: create-json diff --git a/.github/workflows/deploy-prod.yaml b/.github/workflows/deploy-prod.yaml index 506b4f0..3ae621d 100644 --- a/.github/workflows/deploy-prod.yaml +++ b/.github/workflows/deploy-prod.yaml @@ -25,6 +25,7 @@ jobs: mkdir -p baebae-BE/src/test/resources echo "${{ secrets.APPLICATION_YML }}" > baebae-BE/src/main/resources/application.yml echo "${{ secrets.APPLICATION_DEPLOY_YML }}" > baebae-BE/src/main/resources/application-deploy.yml + echo "${{ secrets.TEST_APPLICATION_YML }}" > baebae-BE/src/test/resources/application.yml echo "${{ secrets.APPLICATION_TEST_YML }}" > baebae-BE/src/test/resources/application-test.yml - name: create-json @@ -39,7 +40,7 @@ jobs: run: | cd baebae-BE chmod +x ./gradlew - ./gradlew build --quiet + ./gradlew build - - name: Create deployment package run: |