From 68147135f89a2a76eea9fa59fb2a02a9b9900f46 Mon Sep 17 00:00:00 2001 From: Cogent Apps <127109874+cogentapps@users.noreply.github.com> Date: Wed, 22 Mar 2023 04:42:32 -0700 Subject: [PATCH] roll back multi arch for now --- .github/workflows/publish.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 07192f0..71da219 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ name: publish image on: push: - branches: ['release', 'beta'] + branches: ['release'] env: REGISTRY: ghcr.io @@ -19,7 +19,6 @@ env: jobs: build-and-push-image: - timeout-minutes: 180 runs-on: ubuntu-latest permissions: contents: read @@ -29,13 +28,6 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - - name: Set up Docker Buildx - id: buildx - uses: docker/setup-buildx-action@v1 - - name: Log in to the Container registry uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: @@ -50,10 +42,9 @@ jobs: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push Docker image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc with: context: . - platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}