File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 steps :
1010 - name : Checkout code
1111 uses : actions/checkout@v4
12+
1213 - name : build ui
13- run : cd ui && bun install && bun run build
14+ run : cd ui && bun install && bun run build
15+
16+ - name : Deploy to GitHub Pages
17+ uses : JamesIves/github-pages-deploy-action@v4
18+ with :
19+ folder : ui/dist # The folder the action should deploy.
20+ branch : pages # The branch the action should deploy to.
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ function ZustandDemo() {
77 const particleCount = ConfettiStore ( ( state : any ) => state . particleCount ) ;
88 const shapeSize = ConfettiStore ( ( state : any ) => state . shapeSize ) ;
99 const spreadDeg = ConfettiStore ( ( state : any ) => state . spreadDeg ) ;
10- const colors = ConfettiStore ( ( state : any ) => state . colors ) ;
1110 const fadeOutHeight = ConfettiStore ( ( state : any ) => state . fadeOutHeight ) ;
1211 const setMode = ConfettiStore ( ( state : any ) => state . setMode ) ;
1312
You can’t perform that action at this time.
0 commit comments