Skip to content

Commit

Permalink
ci: Add quotes around directory string
Browse files Browse the repository at this point in the history
  • Loading branch information
Regenhardt committed Nov 11, 2024
1 parent a39e3a3 commit 7d607da
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 @@ -176,7 +176,7 @@ jobs:
echo '${{ steps.charts.outputs.charts }}' \
| yq --indent 0 --no-colors --input-format json --unwrapScalar '.[]' \
| while read -r dir; do
helm dependency update $dir;
helm dependency update "$dir";
if [ -f "$dir/Chart.lock" ]; then
yq --indent 0 \
'.dependencies | map(["helm", "repo", "add", .name, .repository] | join(" ")) | .[]' \
Expand Down

0 comments on commit 7d607da

Please sign in to comment.