From 44b2763745dcf27396ec4a7b8a7e9afbb7926c91 Mon Sep 17 00:00:00 2001 From: itzaname Date: Fri, 3 Oct 2025 23:56:52 -0400 Subject: [PATCH] Fix app version in chart --- hack/push-chart.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/push-chart.sh b/hack/push-chart.sh index f4da388..9a20d2f 100755 --- a/hack/push-chart.sh +++ b/hack/push-chart.sh @@ -7,7 +7,7 @@ echo "Using version: ${VERSION}" # Package the chart with version/appVersion = git tag (sans 'v') helm package "${CHART_DIR}" \ --version "${VERSION}" \ - --app-version "${VERSION}" + --app-version "v${VERSION}" # Add the Gitea Helm repo with basic auth (stored in Helm config) helm repo add "${DRONE_REPO_NAME}" "https://git.itzana.me/api/packages/${DRONE_REPO_OWNER}/helm" \