Skip to content
This repository was archived by the owner on Jan 30, 2026. It is now read-only.

Commit 36fed5c

Browse files
committed
workflow update bun
1 parent 38d90b3 commit 36fed5c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ jobs:
5252
exit 1
5353
fi
5454
55-
- name: Setup Node
56-
uses: actions/setup-node@v4
55+
- name: Setup Bun
56+
uses: oven-sh/setup-bun@v1
5757
with:
58-
node-version: "lts/*"
58+
bun-version: latest
5959
cache: ${{ steps.detect-package-manager.outputs.manager }}
6060

6161
- name: Setup Pages
@@ -75,17 +75,17 @@ jobs:
7575
- name: Install dependencies
7676
run:
7777
cd frontend
78-
${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
78+
bun install
7979

8080
- name: Build with Next.js
8181
run:
8282
cd frontend
83-
${{ steps.detect-package-manager.outputs.runner }} next build
83+
bun run build
8484

8585
- name: Upload artifact
8686
uses: actions/upload-pages-artifact@v3
8787
with:
88-
path: ./out
88+
path: ./frontend/out
8989

9090
# Deployment job
9191
deploy:

0 commit comments

Comments
 (0)