Skip to content

Commit 9a59916

Browse files
committed
fix deployment
1 parent d71c3a2 commit 9a59916

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,12 @@ jobs:
3030
steps:
3131
- name: Checkout
3232
uses: actions/checkout@v4
33-
- name: Set up Node
34-
uses: actions/setup-node@v4
35-
with:
36-
node-version: lts/*
37-
cache: "npm"
33+
- name: Set up Bun
34+
uses: oven-sh/setup-bun@v2
3835
- name: Install dependencies
39-
run: npm ci
36+
run: bun install --production --frozen-lockfile
4037
- name: Build
41-
run: npm run build
38+
run: bun run build
4239
- name: Setup Pages
4340
uses: actions/configure-pages@v5
4441
- name: Upload artifact

0 commit comments

Comments
 (0)