From 47f5171a8ef428e58b361716cc7af5d6f0b02711 Mon Sep 17 00:00:00 2001 From: Alan Smith Date: Thu, 27 Nov 2025 12:43:35 -0500 Subject: [PATCH] change so deployed pages will have the correct base address --- .github/workflows/deploy_gh_pages.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy_gh_pages.yml b/.github/workflows/deploy_gh_pages.yml index b5ae59a8..490fce34 100644 --- a/.github/workflows/deploy_gh_pages.yml +++ b/.github/workflows/deploy_gh_pages.yml @@ -20,6 +20,10 @@ - name: Install dependencies run: npm install + - name: Update base URL for GitHub Pages + run: | + sed -i "s|base: '/blocks/',|base: '/systemcore-blocks-interface/',|" vite.config.mts + - name: Build package run: npm run build # Replace with your build command, outputting to e.g., 'dist'