Skip to content

Commit 90d4082

Browse files
authored
fix syntax error in helm release workflow (#5676)
1 parent a29e59a commit 90d4082

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ jobs:
710710
if [ ${{ github.ref_type }} != "tag" ]; then
711711
helm_versions="--app-version edge --version 0.0.0-edge"
712712
else
713-
helm_versions="--app-version ${{ steps.checks.outputs.ic_version }} --version ${{ steps.checks.outputs.chart_version }}"
713+
helm_versions="--app-version ${{ needs.checks.outputs.ic_version }} --version ${{ needs.checks.outputs.chart_version }}"
714714
fi
715715
output=$(helm package ${helm_versions} kic/charts/nginx-ingress)
716716
echo "path=$(basename -- $(echo $output | cut -d: -f2))" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)