chore(build): Don't commit chart change for ee patch (#1216)
Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
parent
5fec988f66
commit
e9ffa2cac9
2 changed files with 2 additions and 0 deletions
|
|
@ -36,6 +36,7 @@ check_prereq() {
|
|||
}
|
||||
}
|
||||
update_helm_release() {
|
||||
[[ $ee == "true" ]] && return
|
||||
HELM_TAG="$(grep -iER ^version ../scripts/helmcharts/openreplay/charts/$chart | awk '{print $2}' | awk -F. -v OFS=. '{$NF += 1 ; print}')"
|
||||
# Update the chart version
|
||||
sed -i "s#^version.*#version: $HELM_TAG# g" ../scripts/helmcharts/openreplay/charts/$chart/Chart.yaml
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ chart=frontend
|
|||
}
|
||||
}
|
||||
update_helm_release() {
|
||||
[[ $ee == true ]] && return
|
||||
HELM_TAG="$(grep -iER ^version ../scripts/helmcharts/openreplay/charts/$chart | awk '{print $2}' | awk -F. -v OFS=. '{$NF += 1 ; print}')"
|
||||
# Update the chart version
|
||||
sed -i "s#^version.*#version: $HELM_TAG# g" ../scripts/helmcharts/openreplay/charts/$chart/Chart.yaml
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue