Skip to content

Commit b0e0b72

Browse files
Fix echo statement for resource group creation confirmation in deployment workflow
1 parent cb90067 commit b0e0b72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/job-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ jobs:
397397
if [ "$rg_exists" = "false" ]; then
398398
echo "Resource group '${{ env.RESOURCE_GROUP_NAME }}' does not exist. Creating..."
399399
az group create --name ${{ env.RESOURCE_GROUP_NAME }} --location ${{ env.AZURE_LOCATION }} --tags ${{ env.RG_TAGS }} || { echo "❌ Error creating resource group"; exit 1; }
400-
echo "✅ Resource group '${{ env.RESOURCE_GROUP_NAME }}' created with tags
400+
echo "✅ Resource group '${{ env.RESOURCE_GROUP_NAME }}' created with tags"
401401
else
402402
echo "✅ Resource group exists, proceeding with deployment"
403403
fi

0 commit comments

Comments
 (0)