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
# if ! az resource delete --ids /subscriptions/${{ secrets.AZURE_SUBSCRIPTION_ID }}/providers/Microsoft.CognitiveServices/locations/eastus/resourceGroups/${{ env.RESOURCE_GROUP_NAME }}/deletedAccounts/${{ env.OPENAI_RESOURCE_NAME }} --verbose; then
236
-
# echo "Failed to purge openai resource: ${{ env.OPENAI_RESOURCE_NAME }}"
237
-
# else
238
-
# echo "Purged the openai resource: ${{ env.OPENAI_RESOURCE_NAME }}"
239
-
# fi
233
+
# Purge OpenAI Resource
234
+
echo "Purging the OpenAI Resource..."
235
+
if ! az resource delete --ids /subscriptions/${{ secrets.AZURE_SUBSCRIPTION_ID }}/providers/Microsoft.CognitiveServices/locations/eastus/resourceGroups/${{ env.RESOURCE_GROUP_NAME }}/deletedAccounts/${{ env.OPENAI_RESOURCE_NAME }} --verbose; then
236
+
echo "Failed to purge openai resource: ${{ env.OPENAI_RESOURCE_NAME }}"
237
+
else
238
+
echo "Purged the openai resource: ${{ env.OPENAI_RESOURCE_NAME }}"
0 commit comments