Skip to content
23 changes: 21 additions & 2 deletions azure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,24 @@ metadata:
name: content-processinge@1.0

hooks:
postprovision: {}

preprovision:
windows:
run: |
Write-Host ""
Write-Host " ---------------------------------------------------------------------------------------------------" -ForegroundColor Yellow
Write-Host " Note: If deployment fails or you encounter an issue, please open an issue with the deployment logs." -ForegroundColor Yellow
Write-Host " https://github.com/microsoft/content-processing-solution-accelerator/issues" -ForegroundColor Cyan
Write-Host " ---------------------------------------------------------------------------------------------------" -ForegroundColor Yellow
Write-Host ""
shell: pwsh
interactive: true
posix:
run: |
printf '\n'
printf '\033[33m ---------------------------------------------------------------------------------------------------\033[0m\n'
printf '\033[33m Note: If deployment fails or you encounter an issue, please open an issue with the deployment logs.\033[0m\n'
printf '\033[36m https://github.com/microsoft/content-processing-solution-accelerator/issues\033[0m\n'
printf '\033[33m ---------------------------------------------------------------------------------------------------\033[0m\n'
printf '\n'
shell: sh
interactive: true