Skip to content

Commit 1016ff6

Browse files
committed
Fix: 깃헙 액션빌드 실패 해결
1 parent 4350f0a commit 1016ff6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ jobs:
1212
- name: Checkout code
1313
uses: actions/checkout@v4
1414

15-
- name: Install Bun
16-
run: |
17-
# Bun 설치 스크립트 실행
18-
curl -fsSL https://bun.sh/install | bash
19-
# PATH 변수 강제 설정 (필요시)
20-
echo 'export PATH="/usr/local/bin:$PATH"' >> $GITHUB_ENV
15+
# - name: Install Bun
16+
# run: |
17+
# # Bun 설치 스크립트 실행
18+
# curl -fsSL https://bun.sh/install | bash
19+
# # PATH 변수 강제 설정 (필요시)
20+
# echo 'export PATH="/usr/local/bin:$PATH"' >> $GITHUB_ENV
2121

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

2525
- name: Build Project
2626
run: bun run build # out 폴더 생성
2727

28-
- name: Deploy to GitHub Pages
29-
uses: JamesIves/github-pages-deploy-action@v4
28+
- uses: oven-sh/setup-bun@v2
3029
with:
30+
bun-version: latest
3131
branch: gh-pages # 배포할 브랜치
3232
folder: out # 배포할 폴더
3333
clean: true

0 commit comments

Comments
 (0)