From 2f5134b259b6174dcd4a4797e259fb0ad68142a1 Mon Sep 17 00:00:00 2001 From: Chuong Ho <31106432+chuongmep@users.noreply.github.com> Date: Wed, 2 Apr 2025 17:27:03 +0800 Subject: [PATCH 1/2] Update functions-how-to-azure-devops.md --- articles/azure-functions/functions-how-to-azure-devops.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/azure-functions/functions-how-to-azure-devops.md b/articles/azure-functions/functions-how-to-azure-devops.md index e49bc8e09e5e1..b2bafbca2629c 100644 --- a/articles/azure-functions/functions-how-to-azure-devops.md +++ b/articles/azure-functions/functions-how-to-azure-devops.md @@ -445,7 +445,7 @@ You'll deploy with the [Azure Function App Deploy v2](/azure/devops/pipelines/ta The v2 version of the task includes support for newer applications stacks for .NET, Python, and Node. The task includes networking predeployment checks. When there are predeployment issues, deployment stops. -To deploy to Azure Functions, add the following snippet at the end of your `azure-pipelines.yml` file. The default `appType` is Windows. You can specify Linux by setting the `appType` to `functionAppLinux`. Deploying to a Flex Consumption app requires you to set both `appType: functionAppLinux` and `isFlexConsumption: true`. +To deploy to Azure Functions, add the following snippet at the end of your `azure-pipelines.yml` file. The default `appType` is Windows. You can specify Linux by setting the `appType` to `functionAppLinux`. Deploying to a Flex Consumption app requires you to set both `appType: functionAppLinux` and `isFlexConsumption: true`. The reason must set `functionAppLinux` when use Flex Consumption because [Flex Consumption](https://learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-plan) is a Linux-based Azure Functions. ### [Windows App](#tab/windows) ```yaml From 09733e4ae71374f8da393105134b4581c904f4e9 Mon Sep 17 00:00:00 2001 From: Chuong Ho <31106432+chuongmep@users.noreply.github.com> Date: Thu, 3 Apr 2025 00:22:22 +0800 Subject: [PATCH 2/2] Update articles/azure-functions/functions-how-to-azure-devops.md Co-authored-by: Courtney Wales <62625502+Court72@users.noreply.github.com> --- articles/azure-functions/functions-how-to-azure-devops.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/azure-functions/functions-how-to-azure-devops.md b/articles/azure-functions/functions-how-to-azure-devops.md index b2bafbca2629c..096997604f383 100644 --- a/articles/azure-functions/functions-how-to-azure-devops.md +++ b/articles/azure-functions/functions-how-to-azure-devops.md @@ -445,7 +445,7 @@ You'll deploy with the [Azure Function App Deploy v2](/azure/devops/pipelines/ta The v2 version of the task includes support for newer applications stacks for .NET, Python, and Node. The task includes networking predeployment checks. When there are predeployment issues, deployment stops. -To deploy to Azure Functions, add the following snippet at the end of your `azure-pipelines.yml` file. The default `appType` is Windows. You can specify Linux by setting the `appType` to `functionAppLinux`. Deploying to a Flex Consumption app requires you to set both `appType: functionAppLinux` and `isFlexConsumption: true`. The reason must set `functionAppLinux` when use Flex Consumption because [Flex Consumption](https://learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-plan) is a Linux-based Azure Functions. +To deploy to Azure Functions, add the following snippet at the end of your `azure-pipelines.yml` file. The default `appType` is Windows. You can specify Linux by setting the `appType` to `functionAppLinux`. Deploying to a Flex Consumption app requires you to set both `appType: functionAppLinux` and `isFlexConsumption: true`. The reason must be set to `functionAppLinux` when you use Flex Consumption because [Flex Consumption](/azure/azure-functions/flex-consumption-plan) is a Linux-based Azure Functions. ### [Windows App](#tab/windows) ```yaml