diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index adc22bc..df47566 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -34,7 +34,9 @@ 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 eframe_template/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: ./trunk build --release --public-url "${GITHUB_REPOSITORY#*/}" + # causes problems with the path resolution see https://github.com/emilk/eframe_template/issues/116 + # run: ./trunk build --release --public-url "${GITHUB_REPOSITORY#*/}" + run: ./trunk build --release - name: Deploy uses: JamesIves/github-pages-deploy-action@v4 with: