CrazyMax
CrazyMax
> Or, I guess I can't add logging since we're using the docker-driver? Yes not possible with docker driver unfortunately. Can you try by adding a step to set up...
> bug is gone in version `25.0.3` of Docker which is the latest stable (installed with your action above). Good to know! fyi @thaJeztah @vvoland @tonistiigi
Would need logs from your workflow and/or link to your repo to help you out.
> ```yaml > - name: Set up Docker Buildx > uses: docker/setup-buildx-action@v2 > - name: Build and push Docker image > id: build-docker > uses: docker/build-push-action@v4 > with: > file:...
> Hello - it's me again! `load: true` worked without `push: true`, but am getting > > > buildx failed with: ERROR: push and load may not be set together...
> Hello! Original author here. 👋 I can confirm that adding `load: true` made `outputs.digest` be populated for me. I will leave it up to the maintainers to decide if...
Will be with next Buildx 0.13 and BuildKit 0.13.
@tonynajjar Thanks for trying this out! I'm looking at it and keep you posted.
Ok after looking at it we indeed forgot to handle the `push` and `load` shorthand. I tested local changes on my side and it seems to work. I'm opening a...
@tonynajjar Can you try with this step and let us know?: ```yaml - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 with: version: https://github.com/crazy-max/buildx.git#multi-load-push driver-opts: image=moby/buildkit:v0.13.0-rc3 ```