File tree Expand file tree Collapse file tree 2 files changed +11
-13
lines changed Expand file tree Collapse file tree 2 files changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Deploy to GitHub Pages
2
2
3
3
on :
4
4
push :
5
- branches : [ main ]
5
+ branches : [main]
6
6
workflow_dispatch :
7
7
8
8
permissions :
@@ -15,19 +15,18 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- uses : actions/checkout@v4
18
-
19
- - name : Setup Node.js
20
- uses : actions /setup-node@v4
18
+
19
+ - name : Setup Bun
20
+ uses : oven-sh /setup-bun@v1
21
21
with :
22
- node-version : ' 20'
23
- cache : ' npm'
24
-
22
+ bun-version : latest
23
+
25
24
- name : Install dependencies
26
- run : npm ci
27
-
25
+ run : bun install
26
+
28
27
- name : Build site
29
- run : npm run build
30
-
28
+ run : bun run build
29
+
31
30
- name : Upload artifact
32
31
uses : actions/upload-pages-artifact@v3
33
32
with :
42
41
steps :
43
42
- name : Deploy to GitHub Pages
44
43
id : deployment
45
- uses : actions/deploy-pages@v4
44
+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ import {
21
21
BsChatDotsFill ,
22
22
BsCalendarEventFill ,
23
23
BsGeo ,
24
- BsPalette2 ,
25
24
BsChevronDown
26
25
} from 'solid-icons/bs' ;
27
26
import { Logo } from "./components/Logo" ;
You can’t perform that action at this time.
0 commit comments