From 49b5d92275cac9060210a276eded1f22788744a6 Mon Sep 17 00:00:00 2001 From: James Flynn Date: Mon, 1 Mar 2021 19:18:43 +0000 Subject: [PATCH] Added: Deploy Web App job --- azure-pipelines.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ba12fd40c..1ca7835c0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -46,3 +46,13 @@ jobs: publishLocation: 'Container' # Publishes inside Azure Pipelines artifact folder. parallel: true # Increased speed through multi-threaded copying. parallelCount: 8 # Dependent upon CPU capabilities. + + - job: DeployWebApp + steps: + - task: AzureWebApp@1 + inputs: + azureSubscription: 'azure-svc-connection' + appType: webAppLinux + appName: 'james-pet-clinic' + package: '$(System.DefaultWorkingDirectory)/**/*.jar' + \ No newline at end of file