refactor(charts): BREAKING CHANGE (#2836)

* Update Apps with new Common version

* Patch with the secret fixes from common

* fix amd
This commit is contained in:
Kjeld Schouten-Lebbing
2022-06-07 19:41:19 +02:00
committed by GitHub
parent e4911cf0b1
commit 5529c2a3af
1546 changed files with 10467 additions and 3650 deletions
+3 -3
View File
@@ -40,10 +40,10 @@ function incr_semver() {
BUMPTYPE=${1}
if [ -z ${2+x} ]; then
for train in stable incubator games enterprise develop non-free deprecated dependency core; do
for train in stable SCALE incubator games enterprise develop non-free deprecated dependency core; do
for chart in charts/${train}/*; do
if [ -d "${chart}" ]; then
echo "Bumping patch version for ${train}/${chart}"
echo "Bumping version for ${train}/${chart}"
OLDVER=$(cat ${chart}/Chart.yaml | grep "^version: ")
OLDVER=${OLDVER#version: }
NEWVER=$(incr_semver ${OLDVER} ${BUMPTYPE})
@@ -54,7 +54,7 @@ done
else
chart=${2}
if [ -d "${chart}" ]; then
echo "Bumping patch version for ${chart}"
echo "Bumping version for ${chart}"
OLDVER=$(cat ${chart}/Chart.yaml | grep "^version: ")
OLDVER=${OLDVER#version: }
NEWVER=$(incr_semver ${OLDVER} ${BUMPTYPE})