Skip to content

Commit

Permalink
Fix: yarn build path
Browse files Browse the repository at this point in the history
  • Loading branch information
su-hwani committed May 5, 2024
1 parent 047c005 commit 3bccb52
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Check Node v # Node v 확인
- name: Check Node v
run: node -v

- name: Change Frontend .env
Expand All @@ -61,11 +61,15 @@ jobs:
touch ./frontend/.env
echo "${{ secrets.FRONTEND_ENV_API_ROOT }}" >> ./frontend/.env
- name: Yarn Install Dependencies # 의존 파일 설치
run: yarn install --frozen-lockfile
- name: Yarn Install Dependencies
run: |
cd ./frontend
yarn install --frozen-lockfile
- name: Yarn Build # React Build
run: yarn build
- name: Yarn Build
run: |
cd ./frontend
yarn build
- name: Frontend Docker build & push to docker repo
run: |
Expand Down

0 comments on commit 3bccb52

Please sign in to comment.