This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Force Azure App Service to pull the latest manifest of a given container image tag. | |
| .EXAMPLE | |
| PS> Update-AzAppServiceContainerImageVersion.ps1 -WebhookURL 'https://$<App Service name>:<password>@<App Service name>.scm.azurewebsites.net/api/registry/webhook' | |
| .NOTES | |
| https://learn.microsoft.com/en-us/azure/app-service/deploy-ci-cd-custom-container | |
| #> | |
| [CmdletBinding()] | |
| param ( |