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

This commit is contained in:
blotus 2023-05-16 15:24:31 +02:00 committed by GitHub
parent 77f2968267
commit 0ddd42c01f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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