How to add a custom post deployment script to azure websites? How to add a custom post deployment script to azure websites? azure azure

How to add a custom post deployment script to azure websites?


At the azure portal on the CONFIGURE tab of your website add a "app settings" entry called POST_DEPLOYMENT_ACTION with the value of source/copyextrafiles.cmdSave and the next deploy will run the cmd for you after the deploy.

Here the picture:enter image description here


An alternative in addition to the solutions already provided is to copy the script in to a specific folder provided for post deployment action hooks.

So after creating a new directory in "D:\home\site\deployments\tools\" named "PostDeploymentActions", you could just add script files (.bat, .cmd or .ps1) into the directory and they will all run, one by one, after each deployment.