From f4da9e116a86a8bceb9a58687414a5c24326e603 Mon Sep 17 00:00:00 2001 From: magdev Date: Thu, 29 Jan 2026 22:16:57 +0100 Subject: [PATCH] Fix SIGPIPE error in package verification Add || true to suppress exit code 141 from unzip piped to head. Co-Authored-By: Claude Opus 4.5 --- .gitea/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 6ef05d9..ffdf073 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -99,7 +99,7 @@ jobs: run: | VERSION=${{ steps.version.outputs.version }} echo "=== Package contents ===" - unzip -l "releases/wc-licensed-product-${VERSION}.zip" | head -50 + unzip -l "releases/wc-licensed-product-${VERSION}.zip" | head -50 || true echo "" echo "=== Verification checks ==="