From 13ed849657a7430d9dc8c4d9de8c30574b4d58bc Mon Sep 17 00:00:00 2001 From: Paul Makles Date: Tue, 9 Nov 2021 23:59:24 +0000 Subject: [PATCH] feat: get rid of arm64 because problems todo: bring it back later --- .github/workflows/docker.yml | 38 ------------------------------------ 1 file changed, 38 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 57543dda..7a001c19 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -101,41 +101,3 @@ jobs: run: | rm -rf /tmp/.buildx-cache mv /tmp/.buildx-cache-new /tmp/.buildx-cache - - publish_arm64: - needs: [test] - runs-on: ubuntu-latest - if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags') - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - submodules: "recursive" - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - name: Docker meta - id: meta - uses: docker/metadata-action@v3 - with: - images: revoltchat/server, ghcr.io/revoltchat/server - - name: Login to DockerHub - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Login to Github Container Registry - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - name: Build and publish - uses: docker/build-push-action@v2 - with: - context: . - push: true - platforms: linux/arm64 - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }}