Skip to content

Commit dd5ef5a

Browse files
fix: Merge pull request #249 from microsoft/psl-bug-14641
feat: display web app url after azd deployment
2 parents 89548a5 + 2d3cb85 commit dd5ef5a

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

azure.yaml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,22 @@ deployment:
2727
otherLocation: ${parameters.otherLocation}
2828
baseUrl: ${parameters.baseUrl}
2929

30-
30+
hooks:
31+
postprovision:
32+
windows:
33+
run: |
34+
Write-Host "Web app URL: "
35+
Write-Host "$env:WEB_APP_URL" -ForegroundColor Cyan
36+
shell: pwsh
37+
continueOnError: false
38+
interactive: true
39+
posix:
40+
run: |
41+
echo "Web app URL: "
42+
echo $WEB_APP_URL
43+
shell: sh
44+
continueOnError: false
45+
interactive: true
3146
# environment:
3247
# name: conversation-knowledge-mining-solution-accelerator
3348
# location: eastus

0 commit comments

Comments
 (0)