From 4192aadc1898bb192cbfedeefcfa99a45a8a4574 Mon Sep 17 00:00:00 2001 From: Nicolas Ochem Date: Tue, 4 Apr 2023 16:13:44 -0700 Subject: [PATCH] fix helm release gen --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5e9b49..fe8a875 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,7 +108,7 @@ jobs: # Update the release version of each of polkadot-k8s images for image in $custom_images; do - image_name=$(yq e ".polkadot_k8s_images.$image" $chart/values.yaml | sed -E "s/polkadot-(.*):.*/\1/") + image_name=$(yq e ".polkadot_k8s_images.$image" $chart/values.yaml | sed -E "s/ghcr.io/midl-dev/polkadot-(.*):.*/\1/") yq e ".polkadot_k8s_images.$image = \"ghcr.io/midl-dev/polkadot-$image_name:$(echo $RELEASE_VERSION | sed s/v//)\"" -i $chart/values.yaml done done