From 2343f283326203b57cc1b7750cef18a4eb40170c Mon Sep 17 00:00:00 2001 From: Pariya Ashok Date: Tue, 24 Dec 2024 14:14:10 +0530 Subject: [PATCH] Set PLATFORMS to "all" for multi-platform image support in release process (#1956) Added export of PLATFORMS=all to automation/release.sh to ensure the build supports multiple platforms. Signed-off-by: Ashok Pariya --- automation/release.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/automation/release.sh b/automation/release.sh index 41f513537..c9dd6946c 100755 --- a/automation/release.sh +++ b/automation/release.sh @@ -11,4 +11,6 @@ git config credential.helper '!f() { sleep 1; echo "username=${GITHUB_USER}"; ec source automation/check-patch.setup.sh cd ${TMP_PROJECT_PATH} +# Set the PLATFORMS to "all" to build an image that supports multiple platforms +export PLATFORMS=all make release