From 548d58a586597df22dd8b4fa81c7cb476e887809 Mon Sep 17 00:00:00 2001 From: Liat Berkovich Date: Sun, 26 Jul 2026 15:46:45 +0300 Subject: [PATCH] Fix osac-ux GitHub Pages source branch Pages was configured to build from the "0.1" source branch, which is a plain code snapshot rendered via Jekyll (showing the placeholder public_template README). The actual demo app is built and published by the deploy-pages.yml workflow to the gh-pages branch. Point Pages at gh-pages so it serves the built app instead. Co-authored-by: Cursor --- repositories.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repositories.tf b/repositories.tf index e492dd5..7ef8273 100644 --- a/repositories.tf +++ b/repositories.tf @@ -296,7 +296,7 @@ module "repo_osac_ux" { pages = { build_type = "legacy" source = { - branch = "0.1" + branch = "gh-pages" path = "/" } }