From c8be7295ad7b262805c5b074076f7927c769c787 Mon Sep 17 00:00:00 2001 From: Jhony Avella Date: Thu, 4 Jan 2024 11:01:03 -0500 Subject: [PATCH] fix: bypassing OCI registries when creating a release for the Harmony chart (#55) (#59) --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5606024..b6ce3a2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: # The OCI registries are bypassed since helm repo subcommands are not supported. # More details in https://helm.sh/docs/topics/registries/ - - name: Add dependency repositories (bypassing OCI repositories) + - name: Add dependency repositories via Helm (bypassing OCI repositories) run: | for dir in $(ls -d charts/*/); do helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | sed '/oci:\/\//d' | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done