From 182a12e17a9c881d1d804552b1c19840377d3d09 Mon Sep 17 00:00:00 2001 From: Nick Zelei <2420177+nickzelei@users.noreply.github.com> Date: Mon, 27 Nov 2023 14:53:45 -0800 Subject: [PATCH] fix artifact release for helm top chart (#665) --- .github/workflows/artifact-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/artifact-release.yml b/.github/workflows/artifact-release.yml index b3caf9df3c..a7c6d34201 100644 --- a/.github/workflows/artifact-release.yml +++ b/.github/workflows/artifact-release.yml @@ -369,7 +369,7 @@ jobs: has_deps=$(yq -r '.dependencies[0].version' "$filepath") if [ $has_deps != null ]; then yq -i '.dependencies[].version = strenv(CHART_VERSION)' "$filepath" - yq -i '.dependencies[].repository = oci://ghcr.io/strenv(GITHUB_REPOSITORY)/helm' "$filepath" + yq -i '.dependencies[].repository = "oci://ghcr.io/"+strenv(GITHUB_REPOSITORY)+"/helm"' "$filepath" fi done