From fad2bcd1604a82aa5991d87f95b75efbfd7b7288 Mon Sep 17 00:00:00 2001 From: hailaz <739476267@qq.com> Date: Fri, 22 Aug 2025 18:15:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BB=85=E5=A4=84=E7=90=86kubecm?= =?UTF-8?q?=E7=9B=AE=E5=BD=95=EF=BC=8C=E8=B7=B3=E8=BF=87=E5=85=B6=E4=BB=96?= =?UTF-8?q?=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/scripts/ci-sub.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/scripts/ci-sub.sh b/.github/workflows/scripts/ci-sub.sh index afbaccd05..70e1f13b5 100644 --- a/.github/workflows/scripts/ci-sub.sh +++ b/.github/workflows/scripts/ci-sub.sh @@ -35,6 +35,12 @@ for file in `find . -name go.mod`; do dirpath=$(dirname $file) echo "Processing: $dirpath" + # Only process kubecm directory, skip others + if [ "kubecm" != $(basename $dirpath) ]; then + echo " Skipping: not kubecm directory" + continue + fi + cd $dirpath # Read Go version requirement from go.mod