my website, hosted on wisp.place

Revert "fix: use pnpm"

This reverts commit e033fa7a0473807e2ca5d7e6be08ee8bc1ee3577.

+11 -3
+11 -3
.tangled/workflows/wisp-deploy.yaml
··· 12 12 13 13 dependencies: 14 14 nixpkgs: 15 - - pnpm 16 15 - nodejs 17 16 - coreutils 18 17 - curl 18 + github:NixOS/nixpkgs/nixpkgs-unstable: 19 + - bun 19 20 20 21 environment: 21 22 SITE_PATH: "dist" ··· 25 26 steps: 26 27 - name: build site 27 28 command: | 29 + # necessary to ensure bun is in PATH 28 30 export PATH="$HOME/.nix-profile/bin:$PATH" 29 - pnpm install --frozen-lockfile 30 - pnpm node_modules/.bin/astro build 31 + 32 + bun install --frozen-lockfile 33 + 34 + # build with vite, run directly to get around env issues 35 + bun node_modules/.bin/astro build 31 36 32 37 - name: deploy to wisp 33 38 command: | 39 + # Download Wisp CLI 34 40 curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 35 41 chmod +x wisp-cli 42 + 43 + # Deploy to Wisp 36 44 ./wisp-cli deploy \ 37 45 "$WISP_HANDLE" \ 38 46 --path "$SITE_PATH" \