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
30
- name: Deploy to Cloudflare Workers
31
command: |
32
-
npx --yes wrangler deploy --name blog --assets priv/dist/
···
29
30
- name: Deploy to Cloudflare Workers
31
command: |
32
+
npx --yes wrangler pages deploy --branch main --project-name kacaii-blog ./priv/dist/
+5
justfile
···
1
mod gleam ".justfiles/gleam.just"
2
mod tailwind ".justfiles/tailwind.just"
3
0
0
4
@_default:
5
just --list
6
···
8
[confirm(" Update post titles?")]
9
update-post-titles:
10
gleam dev -- update_titles
0
0
0
···
1
mod gleam ".justfiles/gleam.just"
2
mod tailwind ".justfiles/tailwind.just"
3
4
+
static_files := "priv" / "dist"
5
+
6
@_default:
7
just --list
8
···
10
[confirm(" Update post titles?")]
11
update-post-titles:
12
gleam dev -- update_titles
13
+
14
+
deploy:
15
+
npx wrangler pages deploy {{ static_files }}