my website, hosted on wisp.place

chore: cleanup workflow

-7
-7
.tangled/workflows/wisp-deploy.yaml
··· 26 26 steps: 27 27 - name: build site 28 28 command: | 29 - # necessary to ensure bun is in PATH 30 29 export PATH="$HOME/.nix-profile/bin:$PATH" 31 - 32 30 bun install --frozen-lockfile 33 - 34 - # build with vite, run directly to get around env issues 35 31 bun node_modules/.bin/astro build 36 32 37 33 - name: deploy to wisp 38 34 command: | 39 - # Download Wisp CLI 40 35 curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 41 36 chmod +x wisp-cli 42 - 43 - # Deploy to Wisp 44 37 ./wisp-cli deploy \ 45 38 "$WISP_HANDLE" \ 46 39 --path "$SITE_PATH" \