From 9d9a5d965ddbf7c52ecbad60492b03ad30aabb5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Sell=C3=A9s?= Date: Tue, 30 Jan 2024 17:20:08 +0100 Subject: [PATCH] fixup! feat: build images from the ingress-nginx fork --- .github/workflows/build.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a9cd29e71..963d459d3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -42,7 +42,6 @@ jobs: id: buildimages run: | img=ghcr.io/${{github.repository}}:${{github.sha}} - echo "::set-output name=IMAGE_NAME::${img}" - docker pull ${img} || ( - docker buildx build --push --cache-to type=gha,mode=max --cache-from type=gha --progress plain --platform linux/arm64/v8,linux/amd64 --build-arg BUILDKIT_INLINE_CACHE=1 -t ${img} . - ) + make REGISTRY=ghcr.io/${{github.repository}} image-chroot + docker push ghcr.io/${{github.repository}}:v1.5.1 +