Jekyll Page Build Failure: a generic error

Also you have a CI flow setup so check out the Actions tab and the latest commit to see the log.

It which tells me you have insufficient permissions on the bootstrap script on your build step.

build: scripts/bootstrap

Which can be solved with changing executable permissions locally

chmod +x scripts/bootstrap
git commit .
git push

Or change the line to:

build: sh scripts/bootstrap

Here is the log.