Fix SIGPIPE error in package verification
Some checks failed
Create Release Package / build-release (push) Failing after 1m1s

Add || true to suppress exit code 141 from unzip piped to head.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-29 22:16:57 +01:00
parent 601a4f6da2
commit f4da9e116a

View File

@@ -99,7 +99,7 @@ jobs:
run: | run: |
VERSION=${{ steps.version.outputs.version }} VERSION=${{ steps.version.outputs.version }}
echo "=== Package contents ===" 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 ""
echo "=== Verification checks ===" echo "=== Verification checks ==="