Skip to content

Commit

Permalink
fix: bypassing OCI registries when creating a release for the Harmony…
Browse files Browse the repository at this point in the history
… chart (#55) (#59)
  • Loading branch information
jfavellar90 committed Jan 4, 2024
1 parent 8f47569 commit c8be729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c8be729

Please sign in to comment.