Standard.site landing page built in Next.js
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update deploy.yml

+15 -13
+15 -13
.tangled/workflows/deploy.yml
··· 8 8 clone: 9 9 skip: false 10 10 depth: 1 11 + submodules: false 11 12 12 13 dependencies: 13 14 nixpkgs: 14 15 - nodejs 15 16 - coreutils 16 17 - curl 18 + github:NixOS/nixpkgs/nixpkgs-unstable: 19 + - bun 17 20 18 - steps: 19 - - name: install dependencies 20 - command: | 21 - npm install 21 + environment: 22 + SITE_PATH: './out' 23 + SITE_NAME: 'Standard.site' 24 + WISP_HANDLE: 'standard.site' 22 25 26 + steps: 23 27 - name: build site 24 28 command: | 25 - npm run build 29 + export PATH="$HOME/.nix-profile/bin:$PATH" 30 + bun install --frozen-lockfile 31 + bun node_modules/.bin/next build 26 32 27 33 - name: deploy to wisp 28 34 command: | 29 - # Download Wisp CLI 30 35 curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 31 36 chmod +x wisp-cli 32 - 33 - # Deploy to Wisp 34 - ./wisp-cli deploy \ 35 - $WISP_HANDLE \ 36 - --path $BUILD_PATH \ 37 - --site $SITE_NAME \ 38 - --password $WISP_APP_PASSWORD 37 + ./wisp-cli deploy "$WISP_HANDLE" \ 38 + --path "$BUILD_PATH" \ 39 + --site "$SITE_NAME" \ 40 + --password "$WISP_APP_PASSWORD"