Added: Deploy Web App job

This commit is contained in:
James Flynn 2021-03-01 19:18:43 +00:00
parent 3c1f095e41
commit 49b5d92275

View file

@ -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'