Replies: 2 comments
-
@nnunn you've encountered the new GitHub Actions bug! The error message has nothing to do with CB or your commits exactly, it is due to an update in GitHub Action's images which is breaking EVERYONE. The fix is documented in this blog post. To fix it in your project, edit the file ".github/workflows/jekyll.yml" in your repository. There is two possible ways to fix it. The first option is to update the
with:
This should fix the build error! |
Beta Was this translation helpful? Give feedback.
-
Woohoo that worked!! Thank you so so much! |
Beta Was this translation helpful? Give feedback.
-
I am not able to deploy to Github pages. I get the following message: Deploy Jekyll site to Pages / build (push) Failing after 6s
This was all working a month ago...
And under details I get:
Setup Ruby
The current runner (ubuntu-24.04-x64) was detected as self-hosted because the platform does not match a GitHub-hosted runner image (or that image is deprecated and no longer supported).
In such a case, you should install Ruby in the $RUNNER_TOOL_CACHE yourself, for example using https://github.com/rbenv/ruby-build
You can take inspiration from this workflow for more details: https://github.com/ruby/ruby-builder/blob/master/.github/workflows/build.yml
$ ruby-build 3.1.4 /opt/hostedtoolcache/Ruby/3.1.4/x64
Once that completes successfully, mark it as complete with:
$ touch /opt/hostedtoolcache/Ruby/3.1.4/x64.complete
It is your responsibility to ensure installing Ruby like that is not done in parallel.
any ideas?
Beta Was this translation helpful? Give feedback.
All reactions