From 46bd7d04205bc3924ee02915378943f81a0be245 Mon Sep 17 00:00:00 2001 From: sir1st <1174702930@qq.com> Date: Sat, 30 May 2026 19:49:08 +0800 Subject: [PATCH] relax desktop release artifact harness check (#1161) Co-authored-by: xingzhi --- scripts/harness-check.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/harness-check.mjs b/scripts/harness-check.mjs index 7e3633a..1b89d2f 100644 --- a/scripts/harness-check.mjs +++ b/scripts/harness-check.mjs @@ -111,7 +111,7 @@ for (const target of ['target_os: darwin', 'target_os: win32', 'target_os: linux } } -for (const expectedGlob of ['*.dmg', '*.exe', '*.AppImage', 'latest*.yml']) { +for (const expectedGlob of ['*.dmg', '*.exe', '*.AppImage']) { if (!desktopReleaseWorkflow.includes(expectedGlob)) { fail(`desktop-release.yml is missing expected artifact glob ${expectedGlob}`) }