From 5bc724044097fb2ef704850a3407d0318de32125 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Thu, 18 Apr 2024 19:23:40 -0700 Subject: [PATCH] try hard coding public url --- .github/workflows/gh-pages-deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages-deploy.yml b/.github/workflows/gh-pages-deploy.yml index fc95043..bb744f6 100644 --- a/.github/workflows/gh-pages-deploy.yml +++ b/.github/workflows/gh-pages-deploy.yml @@ -48,7 +48,8 @@ jobs: # this is necessary for github pages where the site is deployed to username.github.io/repo_name and all files must be requested # relatively as favicon.ico. if we skip public-url option, the href paths will instead request username.github.io/favicon.ico which # will obviously return error 404 not found. - run: cd musical-leptos && ./trunk build --release --public-url "${GITHUB_REPOSITORY#*/}" + # run: cd musical-leptos && ./trunk build --release --public-url "${GITHUB_REPOSITORY#*/}" + run: cd musical-leptos && ./trunk build --release --public-url "blinkystitt.github.com/musical-lights-rs" # Deploy with Github Static Pages