fix(ci): prevent SIGPIPE error in Package Artifact step by allowing sigpipe failure in head command
Quant Engine CI/CD Pipeline / validate-core (push) Failing after 19s
Quant Engine CI/CD Pipeline / validate-ui-and-storage (push) Has been skipped
Deploy to Production / Build & Deploy to Production (push) Failing after 3m11s

This commit is contained in:
2026-07-05 18:24:47 +09:00
parent 134c83ff1d
commit a7c6439b0f
+2 -1
View File
@@ -192,7 +192,8 @@ jobs:
fi
echo "✓ Package created: $PACKAGE_SIZE"
tar -tzf quantengine.tar.gz | head -5
# SIGPIPE 에러 방지를 위해 tar 리스트 출력을 안전하게 처리
tar -tzf quantengine.tar.gz | head -n 5 || true
- name: Deploy & Verify on Server
run: |