From 0352debbc36e193a9da5e76308abbc7dfd45d09b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=B3=E9=88=9E?= Date: Sun, 3 Dec 2023 08:29:47 +0800 Subject: [PATCH] chore: Disable arm64 workflow as they failed to build on GitHub free runners MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Commented out the steps for building and pushing arm64 and UBI arm64 images in the Docker Publish workflow Signed-off-by: 陳鈞 --- .github/workflows/docker_publish.yml | 40 ++++++++++++++-------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/docker_publish.yml b/.github/workflows/docker_publish.yml index c172533..8946757 100644 --- a/.github/workflows/docker_publish.yml +++ b/.github/workflows/docker_publish.yml @@ -100,24 +100,24 @@ jobs: labels: ${{ steps.meta-ubi.outputs.labels }} platforms: linux/amd64 - - name: Build and push arm64 - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile - push: true - target: final - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - platforms: linux/arm64 + # - name: Build and push arm64 + # uses: docker/build-push-action@v5 + # with: + # context: . + # file: ./Dockerfile + # push: true + # target: final + # tags: ${{ steps.meta.outputs.tags }} + # labels: ${{ steps.meta.outputs.labels }} + # platforms: linux/arm64 - - name: Build and push UBI arm64 - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.ubi - push: true - target: final - tags: ${{ steps.meta-ubi.outputs.tags }} - labels: ${{ steps.meta-ubi.outputs.labels }} - platforms: linux/arm64 + # - name: Build and push UBI arm64 + # uses: docker/build-push-action@v5 + # with: + # context: . + # file: ./Dockerfile.ubi + # push: true + # target: final + # tags: ${{ steps.meta-ubi.outputs.tags }} + # labels: ${{ steps.meta-ubi.outputs.labels }} + # platforms: linux/arm64