fix(ci): prevent SIGPIPE error in Package Artifact step by allowing sigpipe failure in head command
This commit is contained in:
@@ -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: |
|
||||
|
||||
Reference in New Issue
Block a user