-
Notifications
You must be signed in to change notification settings - Fork 0
/
RPA-Required-Template.yml
34 lines (34 loc) · 1.09 KB
/
RPA-Required-Template.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
parameters:
- name: orchestratorFolder
type: string
default: SHARED
stages:
- template: RPA-Build.yml
- template: RPA-Deploy.yml
parameters:
deploymentEnvironment: 'DEV'
orchestratorConnection: 'UiPath - rpawebdev101'
refName: 'refs/heads/develop'
dependsOn: ['build']
orchestratorFolder: '${{ parameters.orchestratorFolder }}'
- template: RPA-Deploy.yml
parameters:
deploymentEnvironment: 'QAE'
orchestratorConnection: 'UiPath - rpawebtst101'
refName: 'refs/heads/test'
dependsOn: ['build']
orchestratorFolder: '${{ parameters.orchestratorFolder }}'
- template: RPA-Deploy.yml
parameters:
deploymentEnvironment: 'preprod'
orchestratorConnection: 'UiPath - rpawebstg101'
refName: 'refs/heads/release'
dependsOn: ['build']
orchestratorFolder: '${{ parameters.orchestratorFolder }}'
- template: RPA-Deploy.yml
parameters:
deploymentEnvironment: 'PRD'
orchestratorConnection: 'UiPath - rpawebprd101'
refName: 'refs/heads/release'
dependsOn: ['build', 'preprod']
orchestratorFolder: '${{ parameters.orchestratorFolder }}'