remove the v prefix from chart version

Signed-off-by: Pascal Sthamer <10992664+P4sca1@users.noreply.github.com>
This commit is contained in:
Pascal Sthamer
2025-03-24 14:31:46 +01:00
parent 2781063906
commit 17f779ffe2
+3 -2
View File
@@ -35,8 +35,9 @@ jobs:
- name: Set versions
run: |
if [[ ${{ github.event_name }} == 'release' ]]; then
APP_VERSION="${{ github.event.release.tag_name }}"
CHART_VERSION="${{ github.event.release.tag_name }}"
VERSION="${{ github.event.release.tag_name }}"
APP_VERSION="${VERSION}"
CHART_VERSION="${VERSION#v}" # Remove the v prefix
else
APP_VERSION="nightly"
CHART_VERSION="0.0.0-nightly-untagged-latest"