Hi @Oblio
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.
Azure Functions running on the Flex Consumption plan use a different deployment model than other Azure Functions hosting plans. The message "The Deployment Type option does not apply for Flex Consumption" is expected behavior and does not by itself indicate that the deployment has failed.
According to the maintainer of the AzureFunctionApp@2 task, when the target Function App is identified as a Flex Consumption app, the task ignores the traditional deployment type setting and follows the Flex Consumption deployment path automatically.
If the deployment task completes successfully but the Function App is not updated, the issue is typically related to deployment validation, storage access/permissions, or unsupported application settings. Reported examples include the presence of the WEBSITE_RUN_FROM_PACKAGE setting on Flex Consumption apps and storage access issues during deployment.
To help identify the root cause, please enable System.Debug = true in the pipeline and review the deployment logs for any OneDeploy, storage access, or deployment validation errors. These logs usually provide the specific reason why the deployment completed without updating the application.
Hope this helps. Please let us know if you need further assistance.