From a80c8f1b283a6bd6122b36b697bcab43925c9bb9 Mon Sep 17 00:00:00 2001 From: dev-taewon-kim Date: Thu, 31 Oct 2024 18:42:13 +0900 Subject: [PATCH] =?UTF-8?q?config:=20BE=20Actions=20=EC=88=98=EC=A0=95(2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/be.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/be.yml b/.github/workflows/be.yml index 8ad3687..a59e504 100644 --- a/.github/workflows/be.yml +++ b/.github/workflows/be.yml @@ -45,10 +45,14 @@ jobs: shell: bash - name: Install dependencies - run: pnpm install --frozen-lockfile + run: | + cd ./be + pnpm install --frozen-lockfile - name: Build application - run: pnpm build + run: | + cd ./be + pnpm build - name: Setup SSH uses: webfactory/ssh-agent@v0.9.0