Skip to content

Commit d256c0c

Browse files
committed
big-refactor-might-not-work
1 parent c8500cd commit d256c0c

File tree

1 file changed

+2
-2
lines changed
  • .github/actions/deploy-to-control-plane/scripts

1 file changed

+2
-2
lines changed

.github/actions/deploy-to-control-plane/scripts/deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ trap 'rm -f "$TEMP_OUTPUT"' EXIT
3131

3232
# Deploy the application
3333
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
34+
if ! timeout "${WAIT_TIMEOUT}" cpflow deploy-image -a "$APP_NAME" --run-release-phase --org "$CPLN_ORG" --verbose 2>&1 | tee "$TEMP_OUTPUT"; then
3535
echo "❌ Deployment failed"
36-
echo "Error output:"
36+
echo "Full output:"
3737
cat "$TEMP_OUTPUT"
3838
exit 1
3939
fi

0 commit comments

Comments
 (0)