diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d09adab476..8813a1fe94 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 daba13319b..9fdf061fb4 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 }}