diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b5c56dc..5c58c3a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -52,7 +52,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . - platforms: linux/amd64,linux/arm64,linux/ppc64le + platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x builder: ${{ steps.buildx.outputs.name }} push: true build-args: | diff --git a/.goreleaser.yml b/.goreleaser.yml index 21966f9..fed2273 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -13,6 +13,7 @@ builds: - arm - arm64 - ppc64le + - s390x goarm: - 6 - 7 diff --git a/makefile b/makefile index d2f3c39..c607056 100644 --- a/makefile +++ b/makefile @@ -7,7 +7,7 @@ IMAGE_NAME ?= $(DOCKER_ORG)/$(BINARY):$(VERSION) GOOS ?= linux BUILD_OS := linux uname := $(shell uname -s) -BUILDX_PLATFORM ?= linux/amd64,linux/arm64,linux/arm,linux/ppc64le +BUILDX_PLATFORM ?= linux/amd64,linux/arm64,linux/arm,linux/ppc64le,linux/s390x DOCKER_ORGS ?= aquasec public.ecr.aws/aquasecurity GOARCH ?= $@