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:
+3
-3
@@ -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})
|
||||
|
||||
Reference in New Issue
Block a user