From 24bb76d03947209270fc741c016f5c0f6c9a8160 Mon Sep 17 00:00:00 2001 From: KenanZhu <3471685733@qq.com> Date: Mon, 16 Mar 2026 16:26:34 +0800 Subject: [PATCH] =?UTF-8?q?ci(workflows):=20=E4=BF=AE=E6=94=B9=E4=B8=80?= =?UTF-8?q?=E4=BA=9B=E5=AD=97=E7=AC=A6=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a6f100e..344d1e6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,8 +80,8 @@ jobs: # Validate branch name starts with 'release/v' if ! echo "$BRANCH_NAME" | grep -qE '^release/v'; then - echo "X Error: Branch '$BRANCH_NAME' does not start with 'release/v'" - echo "X This workflow should only be triggered by release branches" + echo "✗ Error: Branch '$BRANCH_NAME' does not start with 'release/v'" + echo "✗ This workflow should only be triggered by release branches" exit 1 fi @@ -98,8 +98,8 @@ jobs: TAG_NAME=$(echo "$BRANCH_NAME" | sed -E 's|^release/(v[0-9]+\.[0-9]+\.[0-9]+-.*)$|\1|') IS_RC=true else - echo "X Error: Branch '$BRANCH_NAME' does not match expected format" - echo "X Expected format: release/vX.Y.Z or release/vX.Y.Z-rcX" + echo "✗ Error: Branch '$BRANCH_NAME' does not match expected format" + echo "✗ Expected format: release/vX.Y.Z or release/vX.Y.Z-rcX" exit 1 fi VERSION="${TAG_NAME#v}"