Personal blog finxol.io
blog

ci: try auto deploy again

finxol.io 7fa7644c 33d2f143

verified
+9 -19
+2 -19
.tangled/workflows/deploy.yaml
··· 1 1 when: 2 - - event: [] 2 + - event: ["push"] 3 3 branch: ["main"] 4 4 5 5 dependencies: 6 6 nixpkgs: 7 7 - deno 8 - - nodejs 9 - - pnpm 10 - - python3 11 - - gnused 12 8 13 9 engine: "nixery" 14 10 15 11 steps: 16 - - name: Install dependencies 17 - command: | 18 - pnpm install 19 - 20 - - name: Generate static site 21 - command: | 22 - pnpm generate 23 - 24 - - name: Install deployctl 25 - command: | 26 - deno install -gArf jsr:@deno/deployctl 27 - 28 12 - name: Deploy to Deno Deploy 29 13 command: | 30 - cd .output/public 31 - ~/.deno/bin/deployctl deploy --project finxol-blog --entrypoint jsr:@std/http/file-server --include=. --prod 14 + deno deploy
+7
nuxt.config.ts
··· 85 85 "/posts/**": { prerender: true } 86 86 }, 87 87 88 + nitro: { 89 + prerender: { 90 + routes: ["/", "/about"], 91 + crawlLinks: true 92 + } 93 + }, 94 + 88 95 compatibilityDate: "2025-11-05" 89 96 });