From 4384dafd6a6b989d14d8834fd7e0ad95206f0d01 Mon Sep 17 00:00:00 2001 From: jinwoo22 <98975580+JINU-CHANG@users.noreply.github.com> Date: Tue, 23 Jul 2024 13:58:16 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20yml=20=ED=8C=8C=EC=9D=BC=20=EC=9E=91?= =?UTF-8?q?=EC=84=B1=ED=95=98=EB=8A=94=20=EC=8A=A4=ED=81=AC=EB=A6=BD?= =?UTF-8?q?=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/backend-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index f04c9ad9f..7b37e809d 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -31,6 +31,14 @@ jobs: - name: Grant execute permission for gradlew run: chmod +x gradlew + + - name: Write application.yml + env: + APPLICATION_YML: ${{ secrets.APPLICATION_YML }} + APPLICATION_TEST_YML: ${{ secrets.APPLICATION_TEST_YML }} + run: | + echo "${APPLICATION_YML}" > src/main/resources/application.yml + echo "${APPLICATION_TEST_YML}" > src/test/resources/application-test.yml - name: Build with Gradle run: ./gradlew clean build