From b7eb8b416a9f7ffcea00a594172027ab3f74c81a Mon Sep 17 00:00:00 2001 From: Ric Harvey Date: Fri, 1 Dec 2023 17:16:25 +0000 Subject: [PATCH] adding support for arm v6 and v7 --- .github/workflows/matrix-build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/matrix-build.yml b/.github/workflows/matrix-build.yml index 219f2e4..a5325d3 100644 --- a/.github/workflows/matrix-build.yml +++ b/.github/workflows/matrix-build.yml @@ -18,6 +18,8 @@ jobs: platform: - linux/amd64 - linux/arm64 + - linux/arm/v6 + - linux/arm/v7 steps: - name: Set vars @@ -66,7 +68,9 @@ jobs: run: | docker manifest create $DOCKER_REPO:latest \ $DOCKER_REPO:${{ steps.vars.outputs.version }}-linux-amd64 \ - $DOCKER_REPO:${{ steps.vars.outputs.version }}-linux-arm64 + $DOCKER_REPO:${{ steps.vars.outputs.version }}-linux-arm64 \ + $DOCKER_REPO:${{ steps.vars.outputs.version }}-linux-arm-v6 \ + $DOCKER_REPO:${{ steps.vars.outputs.version }}-linux-arm-v7 - name: Push manifests run: |