-
Notifications
You must be signed in to change notification settings - Fork 43
99 lines (96 loc) · 2.48 KB
/
release-chart.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: Release Chart
on:
workflow_dispatch:
inputs:
chart_dir:
description: 'release specify chart dir or empty to release all'
required: false
default: ''
type: choice
options:
- ""
- apecloud-mysql
- apecloud-mysql-cluster
- apecloud-postgresql
- apecloud-postgresql-cluster
- clickhouse
- clickhouse-cluster
- elasticsearch
- elasticsearch-cluster
- etcd
- etcd-cluster
- foxlake
- foxlake-cluster
- greptimedb
- greptimedb-cluster
- kafka
- kafka-cluster
- llm
- llm-cluster
- mariadb
- mariadb-cluster
- milvus
- milvus-cluster
- mongodb
- mongodb-cluster
- mongodb-sharding-cluster
- mysql
- mysql-cluster
- nebula
- nebula-cluster
- neon
- neon-cluster
- oceanbase
- oceanbase-cluster
- official-postgresql
- official-postgresql-cluster
- openldap
- openldap-cluster
- opensearch
- opensearch-cluster
- oracle
- oracle-cluster
- oracle-mysql
- oracle-mysql-cluster
- orioledb
- orioledb-cluster
- polardbx
- polardbx-cluster
- postgresql
- postgresql-cluster
- pulsar
- pulsar-cluster
- qdrant
- qdrant-cluster
- redis
- redis-cluster
- risingwave
- risingwave-cluster
- starrocks
- starrocks-cluster
- tdengine
- tdengine-cluster
- tidb
- tidb-cluster
- weaviate
- weaviate-cluster
- xinference
- xinference-cluster
- zookeeper
- zookeeper-cluster
chart_version:
description: 'release specify chart version or empty to release default'
required: false
default: ''
env:
GH_TOKEN: ${{ github.token }}
run-name: Release Chart ${{ inputs.chart_dir }} ${{ inputs.chart_version }}
jobs:
release-chart:
uses: apecloud/apecloud-cd/.github/workflows/[email protected]
with:
VERSION: "${{ inputs.chart_version }}"
CHART_DIR: "addons"
SPECIFY_CHART: "${{ inputs.chart_dir }}"
APECD_REF: "v0.1.40"
secrets: inherit