Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-public-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions scripts/publish-public-site.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
//
Expand Down Expand Up @@ -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"
Expand Down