Open
Description
I've looked over all of the documentation available for sidecars:
https://learn.microsoft.com/en-us/azure/app-service/tutorial-custom-container-sidecar
I cannot find any way to deploy a new image for Web Apps that are sidecar enabled. The closest I could find was this:
- name: Deploy Azure WebApp to Staging
uses: azure/webapps-deploy@v2
with:
app-name: ${{ env.WEB_APP_NAME }}
images: ${{ env.ACR_LOGIN_SERVER }}/${{ env.CONTAINER_IMAGE_NAME }}:${{ github.sha }}
slot-name: staging
But that's not valid for sidecar enabled Web Apps.
Activity