We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cdeb8a6 + b54ffe7 commit 10ca211Copy full SHA for 10ca211
.github/workflows/deloy.yml .github/workflows/deploy.yml.github/workflows/deloy.yml renamed to .github/workflows/deploy.yml
@@ -17,16 +17,17 @@ jobs:
17
- name: Setup Node.js
18
uses: actions/setup-node@v3
19
with:
20
- node-version: 18 # 프로젝트에 맞는 Node.js 버전
+ node-version: 18
21
22
- name: Install Dependencies
23
run: npm install
24
25
- name: Build Project
26
- run: npm run build # 프로젝트에 맞는 빌드 명령어로 수정
+ run: |
27
+ CI=false npm run build # CI=false로 경고 무시
28
29
- name: Deploy to GitHub Pages
30
uses: peaceiris/actions-gh-pages@v3
31
32
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./build # 빌드 결과물이 저장되는 디렉토리 (React는 보통 build)
33
+ publish_dir: ./build
0 commit comments