From 54edc54e0372e99240a38720e06b2ddcd2a47766 Mon Sep 17 00:00:00 2001 From: sichoi42 <42.4.sichoi@gmail.com> Date: Thu, 12 Oct 2023 17:30:34 +0900 Subject: [PATCH] =?UTF-8?q?[FE]=20FIX:=20github=20actions=20=EC=98=A4?= =?UTF-8?q?=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/front-cicd.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/front-cicd.yaml b/.github/workflows/front-cicd.yaml index 068966880..96ed63ba7 100644 --- a/.github/workflows/front-cicd.yaml +++ b/.github/workflows/front-cicd.yaml @@ -39,10 +39,10 @@ jobs: # run: npm run lint --prefix frontend - name: Dev env 파일 생성 if: ${{ github.ref == 'refs/heads/dev' }} - run: echo ./config/frontend/dev.env > ./frontend/.env + run: cat ./config/frontend/dev.env > ./frontend/.env - name: Main env 파일 생성 if: ${{ github.ref == 'refs/heads/main' }} - run: echo ./config/frontend/main.env > ./frontend/.env + run: cat ./config/frontend/main.env > ./frontend/.env - name: 빌드 체크 run: npm run build --prefix frontend # - name: 단위 테스트 체크