related to issue https://github.com/Azure/webapps-deploy/issues/338, it happens quite often that code is not updated for zip deployment and linux based functions ...if we check timestamps via SSH in /home/data/SitePackages or /home/site/wwwroot files with older timestamps are still there (also reference in packagename.txt) .. build pipeline was checked and is working fine. we are using this task via azure devops pipeline
Hello,
related to issue https://github.com/Azure/webapps-deploy/issues/338, it happens quite often that code is not updated for zip deployment and linux based functions ...if we check timestamps via SSH in /home/data/SitePackages or /home/site/wwwroot files with older timestamps are still there (also reference in packagename.txt) .. build pipeline was checked and is working fine. we are using this task via azure devops pipeline
task: AzureFunctionApp@2 inputs: connectedServiceNameARM: "$(devSubscription)" appType: functionAppLinux appName: "${{ parameters.appName }}" package: {{ parameters.builtPackageName }}
Community also documented that issue several times https://learn.microsoft.com/en-us/answers/questions/1352090/azure-function-app-deployment-successful-but-code
thanks