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 }}