From ea40fdcb5469b0b7b1bd3f4a7a3e1066286a386e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Sat, 11 Mar 2023 01:32:10 +0300 Subject: [PATCH] chore(docker): disable arm64 builds temporarily --- .github/workflows/docker.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 8ba9cfe..7129b42 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -35,10 +35,10 @@ jobs: type=raw,value=latest type=semver,pattern={{version}} - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - with: - platforms: arm64 + # - name: Set up QEMU + # uses: docker/setup-qemu-action@v2 + # with: + # platforms: arm64 - name: Set up Docker Buildx id: buildx @@ -73,7 +73,7 @@ jobs: with: context: ./ file: ./Dockerfile - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 #,linux/arm64 builder: ${{ steps.buildx.outputs.name }} push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }}