tangled
alpha
login
or
join now
finxol.io
/
blog
0
fork
atom
Personal blog
finxol.io
blog
0
fork
atom
overview
issues
pulls
pipelines
ci: try auto deploy again
finxol.io
4 months ago
7fa7644c
33d2f143
verified
This commit was signed with the committer's
known signature
.
finxol.io
SSH Key Fingerprint:
SHA256:olFE3asYdoBMScuJOt60UxXdJ0RFdGv5kVKrdOtIcPI=
0/1
deploy.yaml
failed
12s
+9
-19
2 changed files
expand all
collapse all
unified
split
.tangled
workflows
deploy.yaml
nuxt.config.ts
+2
-19
.tangled/workflows/deploy.yaml
reviewed
···
1
1
when:
2
2
-
- event: []
2
2
+
- event: ["push"]
3
3
branch: ["main"]
4
4
5
5
dependencies:
6
6
nixpkgs:
7
7
- deno
8
8
-
- nodejs
9
9
-
- pnpm
10
10
-
- python3
11
11
-
- gnused
12
8
13
9
engine: "nixery"
14
10
15
11
steps:
16
16
-
- name: Install dependencies
17
17
-
command: |
18
18
-
pnpm install
19
19
-
20
20
-
- name: Generate static site
21
21
-
command: |
22
22
-
pnpm generate
23
23
-
24
24
-
- name: Install deployctl
25
25
-
command: |
26
26
-
deno install -gArf jsr:@deno/deployctl
27
27
-
28
12
- name: Deploy to Deno Deploy
29
13
command: |
30
30
-
cd .output/public
31
31
-
~/.deno/bin/deployctl deploy --project finxol-blog --entrypoint jsr:@std/http/file-server --include=. --prod
14
14
+
deno deploy
+7
nuxt.config.ts
reviewed
···
85
85
"/posts/**": { prerender: true }
86
86
},
87
87
88
88
+
nitro: {
89
89
+
prerender: {
90
90
+
routes: ["/", "/about"],
91
91
+
crawlLinks: true
92
92
+
}
93
93
+
},
94
94
+
88
95
compatibilityDate: "2025-11-05"
89
96
});