Browse Source

disable armv6 and 7 for docker debian image temporarily (#2200)

blotus 2 years ago
parent
commit
0ddd42c01f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/workflows/release_publish_docker-image-debian.yml

+ 2 - 2
.github/workflows/release_publish_docker-image-debian.yml

@@ -29,7 +29,7 @@ jobs:
             VERSION=pr-${{ github.event.number }}
           fi
           TAGS="${DOCKER_IMAGE}:${VERSION}-debian"
-          if [[ ${{ github.event.action }} == released ]]; then
+          if [[ "${{ github.event.action }}" == "released" ]]; then
             TAGS=$TAGS,${DOCKER_IMAGE}:latest-debian
           fi
           echo "version=${VERSION}" >> $GITHUB_OUTPUT
@@ -54,7 +54,7 @@ jobs:
           file: ./Dockerfile.debian
           push: ${{ github.event_name != 'pull_request' }}
           tags: ${{ steps.prep.outputs.tags }}
-          platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6,linux/386
+          platforms: linux/amd64,linux/arm64,linux/386
           labels: |
             org.opencontainers.image.source=${{ github.event.repository.html_url }}
             org.opencontainers.image.created=${{ steps.prep.outputs.created }}