Skip to content

Commit 3457866

Browse files
committed
Update task name
1 parent f9e2467 commit 3457866

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-apps/azure-pipelines.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The pipeline is triggered by commits to a specific branch in your repository. Wh
1717

1818
## Container Apps Azure Pipelines task
1919

20-
To build and deploy your container app, you add the [`AzureContainerAppsRCV0`](https://marketplace.visualstudio.com/items?itemName=microsoft-oryx.AzureContainerAppsRC) (preview) Azure Pipelines task to your pipeline. It supports the following scenarios:
20+
To build and deploy your container app, you add the [`AzureContainerAppsRC@0`](https://marketplace.visualstudio.com/items?itemName=microsoft-oryx.AzureContainerAppsRC) (preview) Azure Pipelines task to your pipeline. It supports the following scenarios:
2121

2222
* Build from a Dockerfile and deploy to Container Apps.
2323
* Build from source code without a Dockerfile and deploy to Container Apps. Supported languages include .NET, Node.js, PHP, Python, and Ruby.
@@ -31,7 +31,7 @@ The following snippet shows how to build a container image and deploy it to Cont
3131

3232
```yaml
3333
steps:
34-
- task: AzureContainerAppsRC@V0
34+
- task: AzureContainerAppsRC@0
3535
inputs:
3636
appSourcePath: '$(Build.SourcesDirectory)/src'
3737
azureSubscription: 'my-subscription-service-connection'
@@ -48,7 +48,7 @@ The following snippet shows how to deploy an existing container image to Contain
4848

4949
```yaml
5050
steps:
51-
- task: AzureContainerAppsRC@V0
51+
- task: AzureContainerAppsRC@0
5252
inputs:
5353
azureSubscription: 'my-subscription-service-connection'
5454
acrName: 'myregistry'
@@ -173,7 +173,7 @@ To learn more about service connections, see [Connect to Microsoft Azure](/azure
173173
vmImage: ubuntu-latest
174174
175175
steps:
176-
- task: AzureContainerAppsRC@V0
176+
- task: AzureContainerAppsRC@0
177177
inputs:
178178
appSourcePath: '$(Build.SourcesDirectory)/src'
179179
azureSubscription: '<AZURE_SUBSCRIPTION_SERVICE_CONNECTION>'

0 commit comments

Comments
 (0)