Skip to content

Commit

Permalink
[FE] FIX: github actions 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sichoi42 committed Oct 12, 2023
1 parent 6a35b89 commit 54edc54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/front-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 단위 테스트 체크
Expand Down

0 comments on commit 54edc54

Please sign in to comment.