remove the 'v' in the chart version

Signed-off-by: Tim Collins <tim@thecollins.team>
This commit is contained in:
Tim Collins 2023-12-07 07:34:29 +00:00
parent a2a9424345
commit b14f488521
No known key found for this signature in database
GPG key ID: 09F625E00301ED18

View file

@ -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}')