We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
FWIW, it seems Docker's build-push-action now supports caching using the Github Cache API. Currently it's experimental but seems to work well in the little testing I've done.
It's just two arguments to the action, cache-from and cache-to.
cache-from
cache-to
- name: Build and push uses: docker/build-push-action@v5 with: context: . push: true tags: user/app:latest cache-from: type=gha cache-to: type=gha,mode=max
Could be worth a look.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FWIW, it seems Docker's build-push-action now supports caching using the Github Cache API. Currently it's experimental but seems to work well in the little testing I've done.
It's just two arguments to the action,
cache-from
andcache-to
.Could be worth a look.
The text was updated successfully, but these errors were encountered: