From 0ddd42c01f28411d24fc60084f9c48af55f7f1f3 Mon Sep 17 00:00:00 2001 From: blotus Date: Tue, 16 May 2023 15:24:31 +0200 Subject: [PATCH] disable armv6 and 7 for docker debian image temporarily (#2200) --- .github/workflows/release_publish_docker-image-debian.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_publish_docker-image-debian.yml b/.github/workflows/release_publish_docker-image-debian.yml index 98d394a40..e766dae09 100644 --- a/.github/workflows/release_publish_docker-image-debian.yml +++ b/.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 }}