c69a9be88c
PROBLEM: Act Runner reports job conclusion=failure despite all 6 steps=success ROOT CAUSE: 2>&1 redirect merges stderr into stdout, confusing exit code detection FIX: Replace '2>&1' with '|| exit 1' for explicit error handling