From 284884fc1d26e0ed2eb87c3e6497b95d2d07a483 Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Tue, 30 Sep 2025 18:56:02 +0200 Subject: [PATCH] Add missing quotes to PLATFORMS in build_and_push.yml --- .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 80565493..b88c72e8 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 + 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 + 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"