Skip to content

Commit 10ca211

Browse files
authored
Merge pull request #17 from DMU-DebugVisual/inseong
Update deploy
2 parents cdeb8a6 + b54ffe7 commit 10ca211

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,17 @@ jobs:
1717
- name: Setup Node.js
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 18 # 프로젝트에 맞는 Node.js 버전
20+
node-version: 18
2121

2222
- name: Install Dependencies
2323
run: npm install
2424

2525
- name: Build Project
26-
run: npm run build # 프로젝트에 맞는 빌드 명령어로 수정
26+
run: |
27+
CI=false npm run build # CI=false로 경고 무시
2728
2829
- name: Deploy to GitHub Pages
2930
uses: peaceiris/actions-gh-pages@v3
3031
with:
3132
github_token: ${{ secrets.GITHUB_TOKEN }}
32-
publish_dir: ./build # 빌드 결과물이 저장되는 디렉토리 (React는 보통 build)
33+
publish_dir: ./build

0 commit comments

Comments
 (0)