From 3806ba9a14109394eb0fe5dcd1427b702f73b666 Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Tue, 30 Sep 2025 18:44:11 +0200 Subject: [PATCH] Remove arm/v6 from build platforms --- .github/workflows/build_and_push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_push.yml b/.github/workflows/build_and_push.yml index 030fe9b4..80565493 100644 --- a/.github/workflows/build_and_push.yml +++ b/.github/workflows/build_and_push.yml @@ -72,7 +72,7 @@ jobs: TAGS="freikin/dawarich:${VERSION}" # Set platforms based on version type and release type - PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7,linux/arm/v6" + PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7 # Check if this is a patch version (x.y.z where z > 0) if [[ $VERSION =~ ^[0-9]+\.[0-9]+\.[1-9][0-9]*$ ]]; then @@ -80,7 +80,7 @@ jobs: PLATFORMS="linux/amd64" elif [[ $VERSION =~ ^[0-9]+\.[0-9]+\.0$ ]]; then echo "Detected minor version ($VERSION) - building for all platforms" - PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7,linux/arm/v6" + PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7 else echo "Version format not recognized or non-semver - using AMD64 only for safety" PLATFORMS="linux/amd64"