From 85dbf79c63de3ac7eeecde38b0b6721e65757788 Mon Sep 17 00:00:00 2001 From: nohy6630 Date: Fri, 3 May 2024 22:24:18 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=20CICD=20application.yml=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cicd.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 9f72c09..9d02c90 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -28,6 +28,13 @@ jobs: restore-keys: | ${{ runner.os }}-gradle- + - name: Create application-dev.yml + env: + APPLICATION_DEV: ${{secrets.APPLICATION_DEV}} + run: | + mkdir -p src/main/resources + echo $APPLICATION_DEV | base64 --decode > src/main/resources/application.yml + - name: Grant execute permission for gradlew run: chmod u+x gradlew