Build failing on fork of a generated repo #328
Answered
by
vincerubinetti
MartinKjunior
asked this question in
Q&A
-
Checks
Link to your website repohttps://github.com/MartinKjunior/nimo-website Version of Lab Website Template you are using1.3.5 DescriptionI can't get github actions to build the page. The error says Jekyll dependencies are missing, but I thought they are included in Gemfile? The original website is up and running and I don't want to push changes if my forked version is failing. Any help?
|
Beta Was this translation helpful? Give feedback.
Answered by
vincerubinetti
Jun 24, 2025
Replies: 1 comment 1 reply
-
Might be because it's trying to deploy to an existing URL? I've removed the gh-pages branch for now, but I still don't get why the error is about Jekyll. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm looking through your workflow run failures.
The first failure I see is the one you mention above, with
actions/jekyll-build-pages@v1
. That action is not a part of the template and should never be run. It was run in your case because that is GitHub's built-in (and much more limited) Jekyll building mechanism -- which the template is not designed for -- and you hadn't run thefirst-time-setup
workflow first, which disables this built-in behavior by adding the.nojekyll
file.The next failure I see is in
first-time-setup
workflow in the "Rename files" step:mv: cannot stat '.github/user_pull_request_template.md': No such file or directory
. It seems that file had already been deleted at t…