From 35464ccfe038ede2b5132eea3b5e35ca118f4d84 Mon Sep 17 00:00:00 2001 From: "x.yumoto.k" Date: Wed, 27 Sep 2023 09:52:03 +0900 Subject: [PATCH] =?UTF-8?q?AzureWebAppContainer=E3=82=92=E4=BD=BF=E3=81=86?= =?UTF-8?q?=E5=BD=A2=E3=81=AB=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- azure-pipelines-production.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/azure-pipelines-production.yml b/azure-pipelines-production.yml index 4f9522e..91e2013 100644 --- a/azure-pipelines-production.yml +++ b/azure-pipelines-production.yml @@ -35,16 +35,12 @@ jobs: - checkout: self clean: true fetchDepth: 1 - - task: AzureRmWebAppDeployment@4 + - task: AzureWebAppContainer@1 inputs: - ConnectionType: 'AzureRM' azureSubscription: 'omds-service-connection-prod' - appType: 'webAppContainer' - WebAppName: 'app-odms-dictation-prod' - ResourceGroupName: 'prod-application-rg' - DockerNamespace: 'crodmsregistrymaintenance.azurecr.io' - DockerRepository: '$(Build.Repository.Name)/test/dictation' - DockerImageTag: '$(Build.SourceVersion)' + appName: 'app-odms-dictation-prod' + resourceGroupName: 'odms-prod-rg' + containers: 'crodmsregistrymaintenance.azurecr.io/$(Build.Repository.Name)/test/dictation:$(Build.SourceVersion)' - job: frontend_deploy dependsOn: backend_deploy condition: succeeded('backend_deploy')