Skip to content

Commit 4350f0a

Browse files
committed
Feat: GithubAction 을 으로 디플로이 대체
1 parent 5d114ef commit 4350f0a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ jobs:
1313
uses: actions/checkout@v4
1414

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

0 commit comments

Comments
 (0)