From 592e6b8c6ceb267135126794af5c951eb14fd0a5 Mon Sep 17 00:00:00 2001 From: mjh000526 Date: Tue, 12 Nov 2024 18:27:23 +0900 Subject: [PATCH] fix(#35): feature branch deployment add to test --- .github/workflows/cd.yml | 1 + .github/workflows/ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 91f7f76a..e9183586 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -3,6 +3,7 @@ name: froxy Continuous Delivery on: push: branches: + - feature-#35-BE-cicd - release # release 브랜치에 푸시될 때 실행 jobs: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c04e8a00..b6381c5f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,10 +21,10 @@ jobs: with: node-version: '20' # 적절한 Node.js 버전으로 설정 cache: 'pnpm' # pnpm 캐싱 활성화 - + - name: Create .env file run: | - echo "${{ secrets.BE_ENV }}" > ./apps/backend/.env + echo "${{ secrets.BE_ENV }}" > ./apps/backend/.env - name: Install pnpm #pnpm설치 run: |