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: |