From a359c0248b83a1c7d65b472590b1f2866485f936 Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Fri, 29 Oct 2021 20:05:49 +0200 Subject: [PATCH] ci: add missing docker archs (#7666) --- .github/workflows/ci.yml | 11 ++++++++++- .github/workflows/release-automated.yml | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d09adab4..8813a1fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,9 +75,18 @@ jobs: timeout-minutes: 15 runs-on: ubuntu-18.04 steps: - - uses: actions/checkout@v2 + - name: Checkout repository + uses: actions/checkout@v2 + - name: Set up QEMU + id: qemu + uses: docker/setup-qemu-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 - name: Build docker image uses: docker/build-push-action@v2 + with: + context: . + platforms: linux/amd64 check-lock-file-version: name: NPM Lock File Version timeout-minutes: 5 diff --git a/.github/workflows/release-automated.yml b/.github/workflows/release-automated.yml index daba1331..9fdf061f 100644 --- a/.github/workflows/release-automated.yml +++ b/.github/workflows/release-automated.yml @@ -78,7 +78,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . - platforms: linux/amd64 + platforms: linux/amd64, linux/arm/v6, linux/arm/v7, linux/arm64/v8 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}