You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ci: fix client advisor deploy and test automation workflows (#594)
* fix: Update CAdeploy and test automation workflows to enhance deployment and testing processes
* fix: Refactor deployment script to use environment variables for capacity settings and improve quota failure notification
* Remove 'fix-deploy' branch from deployment triggers in CAdeploy.yml
"body": "<p>The quota check failed for CA deployment.</p><p><a href=\"'${RUN_URL}'\">View run</a></p>"
75
+
"body": "<p>Dear Team,</p><p>We would like to inform you that the Build-your-own-copilot-Solution-Accelerator(Client Advisor) Deployment Automation process has encountered a quota issue. Hence, unable to proceed with the deployment.</p><p><a href=\"'${RUN_URL}'\">View run</a></p>"
74
76
}'
75
77
76
78
- name: Fail on Quota Check
@@ -132,10 +134,11 @@ jobs:
132
134
if [[ "$BRANCH" == "main" ]]; then TAG="latest"
133
135
elif [[ "$BRANCH" == "dev" ]]; then TAG="dev"
134
136
elif [[ "$BRANCH" == "demo" ]]; then TAG="demo"
135
-
else TAG="default"; fi
136
-
echo "tagname=$TAG" >> $GITHUB_OUTPUT
137
+
else TAG="latest"; fi
138
+
echo "IMAGE_TAG=$TAG" >> $GITHUB_ENV
139
+
echo "Image Tag: $TAG"
137
140
138
-
- name: Get Deployment Output and extract Values
141
+
- name: Deploy and extract values from deployment output
0 commit comments