Skip to content

Commit

Permalink
Added missing deploymentId param used to promote to XMC env
Browse files Browse the repository at this point in the history
  • Loading branch information
robearlam committed Jun 27, 2024
1 parent 19047b3 commit 359dcbc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deploy_xmCloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
echo $result
isTimedOut=$(echo $result | jq ' .IsTimedOut')
isCompleted=$(echo $result | jq ' .IsCompleted')
deploymentId=$(echo $result | jq ' .DeploymentId')
if [ $isTimedOut = true ]
then
echo "Operation Timed Out."
Expand All @@ -50,5 +51,5 @@ jobs:
echo "Operation Failed."
exit -1
fi
echo "Deployment Completed"
echo "Deployment $deploymentId Completed"
echo "completedDeploymentId=$deploymentId" >> "$GITHUB_OUTPUT"

0 comments on commit 359dcbc

Please sign in to comment.