-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't run Jobs with JS & Docker Actions if they are interdependent #39
Comments
btw, thanks for this amazing operator 🍻 |
There are some known problems in this area: What version of the runner are you using (not the operator, but the runner pods it spawns) - I |
the container uses this image, so I think the runner version is |
Try tag |
What happens if you build the image outside of the action and just use it to push? |
@zackijack: BTW - what CNI are you using? calico? I wonder if this is the problem: projectcalico/calico#2334 |
linking docker-library/docker#62 |
If in my workflow, there are 2 types of Actions:
runner
pod, e.g.actions/checkout@v2
)docker
pod, e.g.docker/build-push-action@v1.1.0
)And if these 2 Actions are interdependent, then I will get an error.
For example, the workflow that I have is more or less like this:
the
docker/build-push-action@v1.1.0
will fail because it cannot find the Dockerfiles that have been cloned byactions/checkout@v2
. This error does not occur if using the hosted runner.does this happen because of the
runner
anddocker
run in different containers? I use the manifest from the example here.Is there a solution to this problem?
The text was updated successfully, but these errors were encountered: