File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,22 +12,22 @@ jobs:
12
12
- name : Checkout code
13
13
uses : actions/checkout@v4
14
14
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
21
21
22
22
- name : Install Dependencies
23
23
run : bun install
24
24
25
25
- name : Build Project
26
26
run : bun run build # out 폴더 생성
27
27
28
- - name : Deploy to GitHub Pages
29
- uses : JamesIves/github-pages-deploy-action@v4
28
+ - uses : oven-sh/setup-bun@v2
30
29
with :
30
+ bun-version : latest
31
31
branch : gh-pages # 배포할 브랜치
32
32
folder : out # 배포할 폴더
33
33
clean : true
You can’t perform that action at this time.
0 commit comments