-
Notifications
You must be signed in to change notification settings - Fork 142
53 lines (51 loc) · 1.42 KB
/
chart-release-candidate.yaml
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
52
53
name: "Chart - Release - Candidate"
on:
push:
branches:
- release-candidate*
jobs:
release:
name: Release Candidate
uses: ./.github/workflows/chart-release-template.yaml
with:
branch: ${{ github.ref_name }}
workflow-ref: chart-release-template.yaml
chart-matrix: |
[
{
"name": "Helm Chart 8.2",
"directory": "charts/camunda-platform-8.2",
"versionSuffix": "rc-8.2",
"override": true
},
{
"name": "Helm Chart 8.3",
"directory": "charts/camunda-platform-8.3",
"versionSuffix": "rc-8.3",
"override": true
},
{
"name": "Helm Chart 8.4",
"directory": "charts/camunda-platform-8.4",
"versionSuffix": "rc-8.4",
"override": true
},
{
"name": "Helm Chart 8.5",
"directory": "charts/camunda-platform-8.5",
"versionSuffix": "rc-8.5",
"override": true
},
{
"name": "Helm Chart 8.6",
"directory": "charts/camunda-platform-8.6",
"versionSuffix": "rc-8.6",
"override": true
},
{
"name": "Helm Chart Alpha",
"directory": "charts/camunda-platform-alpha",
"versionSuffix": "rc-alpha",
"override": true
}
]