-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
51 lines (45 loc) · 931 Bytes
/
azure-pipelines.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
resources:
repositories:
- repository: templates
type: git
name: Infrastructure-as-Code/BuildTemplates
ref: refs/tags/3.0.0
containers:
- container: toolkit
image: gfacrcorev2dazwe.azurecr.io/toolkit:1.8.1
endpoint: GiCV2-ACR-D
parameters:
- name: bump
displayName: Version bump
type: string
default: minor
values:
- major
- minor
- patch
- name: prerel
displayName: Pre-release
type: boolean
default: true
trigger:
batch: true
branches:
include:
- master
paths:
include:
- "*"
exclude:
- .gitignore
- azure-pipelines.yml
- "*.MD"
jobs:
- template: jobs/helm.yml@templates
parameters:
bump: ${{ parameters.bump }}
prerel: ${{ parameters.prerel }}
azureSubscription: GiCv2
dAcr: gfacrcorev2dazwe
pAcr: gfacrcorev2pazwe
pool:
vmImage: ubuntu-latest