From 7be7303eb4f37101b8b8e056acd995cf7cc733f8 Mon Sep 17 00:00:00 2001 From: Daniel Gak Anagrov Date: Wed, 11 Jun 2025 16:16:06 +0200 Subject: [PATCH] python file proper reference (#4923) --- .github/workflows/scripts/publish_helm_chart_commit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scripts/publish_helm_chart_commit.sh b/.github/workflows/scripts/publish_helm_chart_commit.sh index 8928e3b03..fdb3374ce 100644 --- a/.github/workflows/scripts/publish_helm_chart_commit.sh +++ b/.github/workflows/scripts/publish_helm_chart_commit.sh @@ -41,7 +41,7 @@ if [[ "${GITHUB_REF}" == refs/tags/* || "${GITHUB_REF_NAME}" == "${HELM_STABLE_B CURRENT_VERSION="$(grep ^version "${GIT_HELM}/charts/speckle-server/Chart.yaml" | grep -o '2\..*')" echo "ℹ️ Current version ${CURRENT_VERSION}" - "${GIT_ROOT}/workflows/scripts/check_version.py" "${CURRENT_VERSION}" "${RELEASE_VERSION}" + "${GIT_ROOT}/.github/workflows/scripts/check_version.py" "${CURRENT_VERSION}" "${RELEASE_VERSION}" if [ $? -eq 1 ] then echo "The current helm chart version '${CURRENT_VERSION}' is newer than the version '${RELEASE_VERSION}' we are attempting to publish. Exiting"