Documentation for my projects & stuff, build using 11ty.
0
fork

Configure Feed

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

feat (ci): add ci

+34
+34
.tangled/workflows/deploy.yml
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["main"] 4 + 5 + engine: 'nixery' 6 + 7 + dependencies: 8 + nixpkgs: 9 + - nodejs 10 + - coreutils 11 + - curl 12 + - glibc 13 + - pnpm 14 + 15 + environment: 16 + SITE_PATH: '_site' 17 + SITE_NAME: 'docs' 18 + WISP_HANDLE: 'theclashfruit.me' 19 + 20 + steps: 21 + - name: Build 22 + command: | 23 + pnpm i 24 + pnpm build 25 + - name: Deploy 26 + command: | 27 + curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 28 + chmod +x wisp-cli 29 + 30 + ./wisp-cli \ 31 + "$WISP_HANDLE" \ 32 + --path "$SITE_PATH" \ 33 + --site "$SITE_NAME" \ 34 + --password "$WISP_APP_PASSWORD"