The source code for my personal website
0

Configure Feed

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

ci: configure spindle workflow

hanna (Feb 21, 2026, 5:42 PM UTC) 8d528c33 44bcc0ce

+17
+17
.tangled/workflows/pages.yml
··· 1 + engine: 'nixery' 2 + 3 + when: 4 + - event: ['push'] 5 + branch: ['main'] 6 + 7 + dependencies: 8 + nixpkgs/nixpkgs-unstable: ['bun'] 9 + 10 + steps: 11 + - name: 'Install dependencies' 12 + command: bun install --frozen-lockfile 13 + - name: 'Build static website files' 14 + command: bun run build 15 + - name: 'Deploy files to cloudflare' 16 + command: bun run deploy 17 +