Im running dagger in diff cloud CI github actions and GCP cloud build are two of them. Which is the best way to store dagger cache and share it between builds?
Even when dagger is awesome for pipeline building if we lose the cache, or hability to use another container as cache for container building (which is usually one of the steps of the pipeline) we end up waiting really long times cause of that container building.
In my scenario we have a microservice architecture which holds 10+ microservices which leads to build 10 diff container images so that usually takes 30+ min.
Using docker build on GHA with cache takes less than 5 min.
Hope there is a way i can at least save dagger cache in a bucket and restore it between builds