mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 07:45:49 +00:00
Added: Deploy Web App job
This commit is contained in:
parent
3c1f095e41
commit
49b5d92275
1 changed files with 10 additions and 0 deletions
|
@ -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'
|
||||
|
Loading…
Reference in a new issue