This action deploys a ACR container to a Azure Web App for Containers instance
Required Name of the Azure Web App for Containers instance
Required Name of the resource group with the web app resides
Required Docker image name
Optional Docker image tag - defaults to current commit SHA
Required The name of the Azure Container Registry, minus the .azurecr.io
Required The tenant where all the web app resources are placed
Required Service Principal with Contributor role on the Web App
Required The Service Principal credentials
az ad sp create-for-rbac -n "azwebapp-deploy" --skip-assignment
az role assignment create --assignee <spID> --scope <resourceID of the Web App for Containers> --role "Contributor"