From 31f32bdb63f8a08b2116ef0d8e171bb5ed68f320 Mon Sep 17 00:00:00 2001 From: hanxuanyu <2252193204@qq.com> Date: Thu, 29 Jan 2026 17:28:01 +0800 Subject: [PATCH] =?UTF-8?q?GitHub=20Actions:=20=E4=BC=98=E5=8C=96=E9=80=9A?= =?UTF-8?q?=E7=9F=A5=E8=84=9A=E6=9C=AC=EF=BC=8C=E6=B7=BB=E5=8A=A0=20HTTP?= =?UTF-8?q?=20=E7=8A=B6=E6=80=81=E7=A0=81=E8=BE=93=E5=87=BA=E4=BB=A5?= =?UTF-8?q?=E6=8F=90=E5=8D=87=E8=B0=83=E8=AF=95=E4=BE=BF=E5=88=A9=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/verify.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 0967077..659c7df 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -47,7 +47,13 @@ jobs: if [ -n "$NOTIFY_CURLS" ]; then printf "%s\n" "$NOTIFY_CURLS" | while read -r line; do if [ -n "$line" ]; then - eval "$line" || true + echo "Executing: $line" + if [[ "$line" == curl* ]]; then + eval "$line -w \"\\nHTTP Status: %{http_code}\\n\"" || true + else + eval "$line" || true + fi + echo "" fi done fi