Skip to content

Commit 97220d6

Browse files
updated azure.yaml to check
1 parent 5380b9e commit 97220d6

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

azure.yaml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,26 @@ hooks:
1515
posix:
1616
shell: sh
1717
run: |
18-
sudo chmod u+r+x ./infra/scripts/post_deployment.sh
19-
sed -i 's/\r$//' ./infra/scripts/post_deployment.sh
20-
./infra/scripts/post_deployment.sh
18+
Write-Host "🧭 Web App Details:"
19+
Write-Host "✅ Name: $CONTAINER_WEB_APP_NAME"
20+
Write-Host "🌐 Endpoint: https://$CONTAINER_WEB_APP_FQDN"
21+
Write-Host "🔗 Portal URL: https://portal.azure.com/#resource/subscriptions/$AZURE_SUBSCRIPTION_ID/resourceGroups/$AZURE_RESOURCE_GROUP/providers/Microsoft.App/containerApps/$CONTAINER_WEB_APP_NAME" -ForegroundColor Cyan
22+
23+
Write-Host "🧭 API App Details:"
24+
Write-Host "✅ Name: $CONTAINER_API_APP_NAME"
25+
Write-Host "🌐 Endpoint: https://$CONTAINER_API_APP_FQDN"
26+
Write-Host "🔗 Portal URL: https://portal.azure.com/#resource/subscriptions/$AZURE_SUBSCRIPTION_ID/resourceGroups/$AZURE_RESOURCE_GROUP/providers/Microsoft.App/containerApps/$CONTAINER_API_APP_NAME" -ForegroundColor Cyan
2127
interactive: true
2228
windows:
2329
shell: pwsh
24-
run: ./infra/scripts/post_deployment.ps1
30+
run: |
31+
Write-Host "🧭 Web App Details:"
32+
Write-Host "✅ Name: $env:CONTAINER_WEB_APP_NAME"
33+
Write-Host "🌐 Endpoint: https://$env:CONTAINER_WEB_APP_FQDN"
34+
Write-Host "🔗 Portal URL: https://portal.azure.com/#resource/subscriptions/$env:AZURE_SUBSCRIPTION_ID/resourceGroups/$env:AZURE_RESOURCE_GROUP/providers/Microsoft.App/containerApps/$env:CONTAINER_WEB_APP_NAME" -ForegroundColor Cyan
35+
36+
Write-Host "🧭 API App Details:"
37+
Write-Host "✅ Name: $env:CONTAINER_API_APP_NAME"
38+
Write-Host "🌐 Endpoint: https://$env:CONTAINER_API_APP_FQDN"
39+
Write-Host "🔗 Portal URL: https://portal.azure.com/#resource/subscriptions/$env:AZURE_SUBSCRIPTION_ID/resourceGroups/$env:AZURE_RESOURCE_GROUP/providers/Microsoft.App/containerApps/$env:CONTAINER_API_APP_NAME" -ForegroundColor Cyan
2540
interactive: true

0 commit comments

Comments
 (0)