tangled
alpha
login
or
join now
kacaii.dev
/
blog
0
fork
atom
💻 My personal website
blog.kacaii.dev/
blog
gleam
lustre
0
fork
atom
overview
issues
pulls
pipelines
:green_heart: try with pages again
kacaii.dev
1 month ago
b33081f3
93d850c1
+6
-1
2 changed files
expand all
collapse all
unified
split
.tangled
workflows
deploy.yml
justfile
+1
-1
.tangled/workflows/deploy.yml
···
29
29
30
30
- name: Deploy to Cloudflare Workers
31
31
command: |
32
32
-
npx --yes wrangler deploy --name blog --assets priv/dist/
32
32
+
npx --yes wrangler pages deploy --branch main --project-name kacaii-blog ./priv/dist/
+5
justfile
···
1
1
mod gleam ".justfiles/gleam.just"
2
2
mod tailwind ".justfiles/tailwind.just"
3
3
4
4
+
static_files := "priv" / "dist"
5
5
+
4
6
@_default:
5
7
just --list
6
8
···
8
10
[confirm(" Update post titles?")]
9
11
update-post-titles:
10
12
gleam dev -- update_titles
13
13
+
14
14
+
deploy:
15
15
+
npx wrangler pages deploy {{ static_files }}