From dc557970d4a05757075b241ea03ab3dcdb048231 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Mon, 22 Apr 2024 16:35:54 +0200 Subject: [PATCH] ci: switch to stable buildkit image for load and push Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- .github/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c1f030..83109df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -459,9 +459,7 @@ jobs: uses: docker/setup-buildx-action@v3 with: version: ${{ inputs.buildx-version || env.BUILDX_VERSION }} - # TODO: use buildx-stable-1 image when v0.13 promoted driver-opts: | - image=moby/buildkit:v0.13.0 network=host - name: Build and push @@ -504,23 +502,20 @@ jobs: uses: docker/setup-buildx-action@v3 with: version: ${{ inputs.buildx-version || env.BUILDX_VERSION }} - # TODO: use buildx-stable-1 image when v0.13 promoted driver-opts: | - image=moby/buildkit:v0.13.0 network=host - name: Build and push uses: ./ with: workdir: ./test/go + targets: image load: true push: true set: | *.tags=localhost:5000/name/app:latest - name: Check registry - # TODO: enable when --load case fixed (currently overrides --push) - if: false run: | docker buildx imagetools inspect localhost:5000/name/app:latest --format '{{json .}}' -