From 13cb10ede2cfa98e1152cd66383e4be978b7db0a Mon Sep 17 00:00:00 2001 From: tsuki Date: Fri, 1 Aug 2025 18:13:53 +0800 Subject: [PATCH] dont build at arm platform --- .github/workflows/docker.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 4455776..2b866bc 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -45,16 +45,16 @@ jobs: type=semver,pattern={{major}}.{{minor}} type=sha,prefix={{branch}}- - - name: Build and push Docker image - uses: docker/build-push-action@v5 - with: - context: . - platforms: linux/amd64,linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - cache-from: type=gha - cache-to: type=gha,mode=max + # - name: Build and push Docker image + # uses: docker/build-push-action@v5 + # with: + # context: . + # platforms: linux/amd64,linux/arm64 + # push: ${{ github.event_name != 'pull_request' }} + # tags: ${{ steps.meta.outputs.tags }} + # labels: ${{ steps.meta.outputs.labels }} + # cache-from: type=gha + # cache-to: type=gha,mode=max - name: Output image digest if: github.event_name != 'pull_request'