ci: try auto deploy again

finxol.io 7fa7644c 33d2f143

verified
Changed files
+9 -19
.tangled
workflows
+2 -19
.tangled/workflows/deploy.yaml
···
when:
-
- event: []
+
- event: ["push"]
branch: ["main"]
dependencies:
nixpkgs:
- deno
-
- nodejs
-
- pnpm
-
- python3
-
- gnused
engine: "nixery"
steps:
-
- name: Install dependencies
-
command: |
-
pnpm install
-
-
- name: Generate static site
-
command: |
-
pnpm generate
-
-
- name: Install deployctl
-
command: |
-
deno install -gArf jsr:@deno/deployctl
-
- name: Deploy to Deno Deploy
command: |
-
cd .output/public
-
~/.deno/bin/deployctl deploy --project finxol-blog --entrypoint jsr:@std/http/file-server --include=. --prod
+
deno deploy
+7
nuxt.config.ts
···
"/posts/**": { prerender: true }
},
+
nitro: {
+
prerender: {
+
routes: ["/", "/about"],
+
crawlLinks: true
+
}
+
},
+
compatibilityDate: "2025-11-05"
});