File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 runs-on : ubuntu-latest
77 container :
88 image : oven/bun:debian
9+ permissions :
10+ contents : write
911 steps :
1012 - name : Checkout code
1113 uses : actions/checkout@v4
14+
1215 - name : build ui
13- run : cd ui && bun install && bun run build
16+ run : cd ui && bun install && bun run build
17+
18+ - name : Deploy to GitHub Pages
19+ uses : JamesIves/github-pages-deploy-action@v4
20+ with :
21+ folder : ui/dist # The folder the action should deploy.
22+ 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