remove the 'v' in the chart version
Signed-off-by: Tim Collins <tim@thecollins.team>
This commit is contained in:
parent
a2a9424345
commit
b14f488521
1 changed files with 1 additions and 1 deletions
2
.github/workflows/chart-version-bump.yml
vendored
2
.github/workflows/chart-version-bump.yml
vendored
|
@ -38,7 +38,7 @@ jobs:
|
|||
minor=$(echo $version | cut -d. -f2)
|
||||
patch=$(echo $version | cut -d. -f3)
|
||||
patch=$(expr $patch + 1)
|
||||
sed -i "s/^version:.*/version: v${major}.${minor}.${patch}/g" ${parentDir}/Chart.yaml
|
||||
sed -i "s/^version:.*/version: ${major}.${minor}.${patch}/g" ${parentDir}/Chart.yaml
|
||||
|
||||
# Add a changelog entry
|
||||
appVersion=$(grep '^appVersion:' ${parentDir}/Chart.yaml | awk '{print $2}')
|
||||
|
|
Loading…
Reference in a new issue