Skip to content

Commit b85893e

Browse files
Merge pull request #329 from microsoft/manual-image-buidpush
fix: Enhance container image build and push instructions and hooks
2 parents c892e62 + c82168e commit b85893e

1 file changed

Lines changed: 17 additions & 5 deletions

File tree

azure.yaml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,15 @@ hooks:
3333
posix:
3434
shell: sh
3535
run: |
36-
echo "ℹ️ Container images are NOT built automatically. Run the build manually when ready:"
37-
echo " bash ./scripts/acr_build_push.sh"
36+
echo ""
37+
echo "========================================"
38+
echo " Deployment Complete "
39+
echo "========================================"
40+
echo ""
41+
echo "Next step: build and push container images to the dedicated ACR (remote build):"
42+
echo ""
43+
echo " bash ./scripts/acr_build_push.sh"
44+
echo ""
3845
echo "-----"
3946
echo "🧭 Web App Details:"
4047
echo "✅ Name: $CONTAINER_WEB_APP_NAME"
@@ -49,9 +56,14 @@ hooks:
4956
interactive: true
5057
windows:
5158
shell: pwsh
52-
run: |
53-
Write-Host "ℹ️ Container images are NOT built automatically. Run the build manually when ready:"
54-
Write-Host " ./scripts/acr_build_push.ps1"
59+
run: |
60+
Write-Host "`n========================================" -ForegroundColor Green
61+
Write-Host " Deployment Complete " -ForegroundColor Green
62+
Write-Host "========================================`n" -ForegroundColor Green
63+
64+
Write-Host "Next step: build and push container images to the dedicated ACR (remote build):" -ForegroundColor Yellow
65+
Write-Host " ./scripts/acr_build_push.ps1" -ForegroundColor Cyan
66+
5567
Write-Host "-----"
5668
Write-Host "🧭 Web App Details:"
5769
Write-Host "✅ Name: $env:CONTAINER_WEB_APP_NAME"

0 commit comments

Comments
 (0)