Search not working on blowfish (github build)

I am relatively new to this, I’m currently using Hugo with the Blowfish theme. And I’m encountering the same issue as many folks are using other themes. The search seems to be working when using localhost, but not working when deployed. I’ve deployed it through github pages. Though I’ve gone through similar queries in the docs, none seem to be working for this specific theme.

Here is the repo URL: https://github.com/PixelatedPenmanship/pixelatedpenmanship.github.io

Can anyone be able to help me with this?

first ive noticed. you have active builds for

  • jekyll
  • hugo which fails at deploy

guess you dont want both

check the error messages

and blowfish as of the the build message supports hugo til 143 you use 145

without a proper deployment…

When I type hugo version it shows up as hugo 143.1

hugo v0.143.1-0270364a347b2ece97e0321782b21904db515ecc windows/amd64 BuildDate=2025-02-04T08:57:38Z VendorInfo=gohugoio

I’m not familiar with the jekyll part? could you shed some more light on this? I also noticed, on the xml and the html files, the url is set to localhost:1313. could that be the issue?

these are the error messages I’m getting, but they’re mostly related to hashes not matching:

None of the “sha512” hashes in the integrity attribute match the content of the subresource. The computed hash is “ZbXeQ4Ja1UpCAQLJ3czs4fEBVmX+duWzmbolnh3in2yDrBs893vu09KeJmBN/r9WGo4dtSPLat0NaszMno8TBw==”. pixelatedpenmanship.github.io
None of the “sha512” hashes in the integrity attribute match the content of the subresource. The computed hash is “N9IJRoc3LaP3NDoiGkcPa4gG94kapGpaA5Zq9/Dr04uf5TbLFU5q0o8AbRhLKUUlp8QFS2u7S+Yti0U7QtuZvQ==”. pixelatedpenmanship.github.io
None of the “sha512” hashes in the integrity attribute match the content of the subresource. The computed hash is “sNylduh9fqpYUK5OYXWcBleGzbZInWj8yCJAU57r1dpSK9tP2ghf/SRYCMj+KsslFkCOt3TvJrX2AV/Gc3wOqA==”. pixelatedpenmanship.github.io
None of the “sha512” hashes in the integrity attribute match the content of the subresource. The computed hash is “ZbXeQ4Ja1UpCAQLJ3czs4fEBVmX+duWzmbolnh3in2yDrBs893vu09KeJmBN/r9WGo4dtSPLat0NaszMno8TBw==”. pixelatedpenmanship.github.io
None of the “sha512” hashes in the integrity attribute match the content of the subresource. The computed hash is “N9IJRoc3LaP3NDoiGkcPa4gG94kapGpaA5Zq9/Dr04uf5TbLFU5q0o8AbRhLKUUlp8QFS2u7S+Yti0U7QtuZvQ==”. pixelatedpenmanship.github.io
None of the “sha512” hashes in the integrity attribute match the content of the subresource. The computed hash is “sNylduh9fqpYUK5OYXWcBleGzbZInWj8yCJAU57r1dpSK9tP2ghf/SRYCMj+KsslFkCOt3TvJrX2AV/Gc3wOqA==”. pixelatedpenmanship.github.io
Uncaught ReferenceError: mediumZoom is not defined
    <anonymous> https://pixelatedpenmanship.github.io/:859
pixelatedpenmanship.github.io:859:5
Loading failed for the <script> with source “https://pixelatedpenmanship.github.io/livereload.js?mindelay=10&v=2&port=1313&path=livereload”. pixelatedpenmanship.github.io:

I was only talking about your github setup.

cause if all is fine locally most of the times that is the problem.

mobile only so just brief steps.

on github

  • disable or delete your gh-pages action
  • disable the hugo action
  • unpublish your site

locally

  • delete the public and resources locally,

  • commit that change and push to origin.

  • make sure they are gone on github

  • add these two folders to your .gitignore

  • change your hugo workflow to that one as a starter: Host on GitHub Pages

  • start a new build

check the action log if there are any issues.

It worked!!! Thank you so much!!!