💻 My personal website blog.kacaii.dev/
blog gleam lustre

:green_heart: try with pages again

+6 -1
+1 -1
.tangled/workflows/deploy.yml
··· 29 29 30 30 - name: Deploy to Cloudflare Workers 31 31 command: | 32 - npx --yes wrangler deploy --name blog --assets priv/dist/ 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 + static_files := "priv" / "dist" 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 + 14 + deploy: 15 + npx wrangler pages deploy {{ static_files }}