From 4e20249bc0703954244d4be98eaa6c2bcb68cb83 Mon Sep 17 00:00:00 2001 From: "Alex Ellis (OpenFaaS Ltd)" Date: Mon, 9 Dec 2024 09:41:32 +0000 Subject: [PATCH] Remove armv7 from images Signed-off-by: Alex Ellis (OpenFaaS Ltd) --- .github/workflows/build.yml | 2 +- .github/workflows/publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c37f7175..775bbdd83 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: context: ./gateway file: ./gateway/Dockerfile outputs: "type=image,push=false" - platforms: linux/amd64,linux/arm/v7,linux/arm64 + platforms: linux/amd64,linux/arm64 build-args: | VERSION=${{ env.TAG }} GIT_COMMIT=${{ github.sha }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0212df6e9..618fc5a15 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -52,7 +52,7 @@ jobs: context: ./gateway file: ./gateway/Dockerfile outputs: "type=registry,push=true" - platforms: linux/amd64,linux/arm/v7,linux/arm64 + platforms: linux/amd64,linux/arm64 build-args: | VERSION=${{ env.TAG }} GIT_COMMIT=${{ github.sha }}