From f915ba24bc85d2f063e8e55291c207597192bbc1 Mon Sep 17 00:00:00 2001 From: luochen570 <1160510664@qq.com> Date: Sun, 31 May 2026 02:33:01 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20fix=20SIGPIPE=20in=20verify=20step=20(gre?= =?UTF-8?q?p=20-q=20=E2=86=92=20grep=20>=20/dev/null)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build-windows-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build-windows-release.yml b/.gitea/workflows/build-windows-release.yml index b65b734..38883d8 100644 --- a/.gitea/workflows/build-windows-release.yml +++ b/.gitea/workflows/build-windows-release.yml @@ -115,9 +115,9 @@ jobs: set -euo pipefail test -s "artifacts/$PACKAGE" test -s "artifacts/$PACKAGE.sha256" - unzip -l "artifacts/$PACKAGE" | grep -q 'chengnan/chengnan.exe' - unzip -l "artifacts/$PACKAGE" | grep -q 'chengnan/platforms/qwindows.dll' - unzip -l "artifacts/$PACKAGE" | grep -qE 'chengnan/.*opencv.*\.dll' + unzip -l "artifacts/$PACKAGE" | grep -E 'chengnan/chengnan.exe' > /dev/null + unzip -l "artifacts/$PACKAGE" | grep -E 'chengnan/platforms/qwindows.dll' > /dev/null + unzip -l "artifacts/$PACKAGE" | grep -E 'chengnan/.*opencv.*\.dll' > /dev/null sha256sum -c "artifacts/$PACKAGE.sha256" - name: Upload package to repository release