Replies: 1 comment
-
Hi @duchuyvp, did you manage to solve the issue? I'm encounter with the similar problem with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've deployed
gha-runner-scale-set
helm chart to use GitHub Actions for my organization. My goal is to have the runner builds a Docker image, then push it to private registry. I installedgha-runner-scale-set
helm chart by this command:The runner is working properly with simple workflow file, it is able to log into private registry, but it fails on docker build step, for more specific, it hangs on step
RUN --mount=type=ssh poetry install --no-interaction
.This is my workflow file.
This is my pyproject.toml file:
and this is my Dockerfile:
It stucks or hanging at
#12 41.63 - Installing core (0.1.1 8666dad)
for hours in GitHub actions.I can't be sure where problem is (my ssh key, my hosted runner or my private repo, ...) I did try to change
runs-on
toubuntu-latest
to use Github-hosted runner and it works.I really appreciate everyone helps
Beta Was this translation helpful? Give feedback.
All reactions