diff --git a/.github/workflows/deploy-public-site.yml b/.github/workflows/deploy-public-site.yml index 50a6bf29..2d1b9f03 100644 --- a/.github/workflows/deploy-public-site.yml +++ b/.github/workflows/deploy-public-site.yml @@ -3,7 +3,7 @@ name: Deploy public site # The tinystudio.in release lane. Every merge to main prepares a filtered # deploy bundle from public/ (the snoozed managed-service buyer path from # PRs #10/#11 is removed; every other merged fix is kept), publishes it to -# the Cloudflare Pages project tiny-studio-3f5 with wrangler direct upload +# the Cloudflare Pages project tiny-studio (subdomain tiny-studio-3f5.pages.dev) with wrangler direct upload # (independent of the Cloudflare GitHub integration, which has been broken # since 2026-06-20), then verifies the live site against the neutral merged # fixes (H2-after-H1 on /promptly/support/, JSON-LD on /contact/, real 404s, diff --git a/scripts/publish-public-site.mjs b/scripts/publish-public-site.mjs index 4e9dac8f..9a563b80 100644 --- a/scripts/publish-public-site.mjs +++ b/scripts/publish-public-site.mjs @@ -2,7 +2,7 @@ // // Pipeline: prepare the filtered deploy bundle from public/ (snoozed // managed-service buyer path removed, neutral fixes asserted), publish it to -// the Cloudflare Pages project tiny-studio-3f5 with wrangler direct upload +// the Cloudflare Pages project tiny-studio (subdomain tiny-studio-3f5.pages.dev) with wrangler direct upload // (independent of the Cloudflare GitHub integration), then verify the live // site against the neutral merged fixes. // @@ -41,7 +41,7 @@ import { preparePublicDeployBundle } from "./prepare-public-deploy-bundle.mjs" const ROOT = join(dirname(fileURLToPath(import.meta.url)), "..") -export const PAGES_PROJECT = "tiny-studio-3f5" +export const PAGES_PROJECT = "tiny-studio" export const PAGES_ACCOUNT_ID = "f670a698e17bf160c8e4679823e68916" export const LIVE_BASE = "https://tinystudio.in" export const CF_API_BASE = "https://api.cloudflare.com/api/v4"