~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) andreijiroh.dev
mkdocs-material zensical website cf-pages
1

Configure Feed

Select the types of activity you want to include in your feed.

ci: update build and deploy scripts

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

Andrei Jiroh Halili (Dec 6, 2025, 4:50 PM UTC) d89cafb8 2462fd44

+4 -3
+2 -1
wrangler.jsonc
··· 10 10 "run_worker_first": false 11 11 }, 12 12 "build": { 13 - "command": "pipenv run build" 13 + "command": "bash ./bin/build.sh", 14 + 14 15 }, 15 16 "workers_dev": true, 16 17 "preview_urls": true,
+2 -2
bin/deploy.sh
··· 22 22 } 23 23 24 24 if [[ $CI == "true" ]]; then 25 - info "Deploying to Cloudflare Pages" 25 + info "Deploying to Cloudflare Workers" 26 26 if [[ $CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "web" ]] && [[ $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH ]]; then 27 - npx wrangler pages publish ${_root_directory_git}/public --project-name ${CF_PAGES_PROJECT_NAME:-"ajhalili2006"} --branch main 27 + npx wrangler deploy 28 28 fi 29 29 fi