We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8500cd commit d256c0cCopy full SHA for d256c0c
.github/actions/deploy-to-control-plane/scripts/deploy.sh
@@ -31,9 +31,9 @@ trap 'rm -f "$TEMP_OUTPUT"' EXIT
31
32
# Deploy the application
33
echo "🚀 Deploying to Control Plane (timeout: ${WAIT_TIMEOUT}s)"
34
-if ! timeout "$WAIT_TIMEOUT" cpflow deploy-image -a "$APP_NAME" --run-release-phase --org "$CPLN_ORG" --verbose | tee "$TEMP_OUTPUT"; then
+if ! timeout "${WAIT_TIMEOUT}" cpflow deploy-image -a "$APP_NAME" --run-release-phase --org "$CPLN_ORG" --verbose 2>&1 | tee "$TEMP_OUTPUT"; then
35
echo "❌ Deployment failed"
36
- echo "Error output:"
+ echo "Full output:"
37
cat "$TEMP_OUTPUT"
38
exit 1
39
fi
0 commit comments