From 8b33123f2fac1630794bc0df1165984e07c0cc83 Mon Sep 17 00:00:00 2001 From: Ji hwan Shin Date: Wed, 10 Apr 2024 23:24:18 +0900 Subject: [PATCH] =?UTF-8?q?[CHORE]=20=ED=98=84=EC=9E=AC=20=EA=B2=BD?= =?UTF-8?q?=EB=A1=9C=20=EC=B6=9C=EB=A0=A5=ED=95=98=EB=8A=94=20=EC=BD=94?= =?UTF-8?q?=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13d3194a..f7971043 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,9 +30,12 @@ jobs: ~/.gradle/wrapper key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} + - name: Print Current Directory + run: pwd + - name: Create application.properties from secret run: | - echo "${{ secrets.APPLICATION_SECRET_SPRING_DEV }}" > ./main/src/main/resources/application.properties + echo "${{ secrets.APPLICATION_SECRET_SPRING_DEV }}" > ./main/src/main/resources/application-secret.properties shell: bash - name: Build and analyze (SpringBoot) @@ -62,6 +65,9 @@ jobs: path: server/node_modules key: ${{ runner.os }}-node-${{ hashFiles('server/package-lock.json') }} + - name: Print Current Directory + run: pwd + - name: Create .dev.env from secret run: | echo "${{ secrets.APPLICATION_SECRET_NESTJS_DEV }}" > ./server/.dev.env