Skip to content

Commit

Permalink
fix syntax error in helm release workflow (#5521)
Browse files Browse the repository at this point in the history
  • Loading branch information
pdabelf5 authored May 9, 2024
1 parent 1593812 commit 5a706b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ jobs:
if [ ${{ github.ref_type }} != "tag" ]; then
helm_versions="--app-version edge --version 0.0.0-edge"
else
helm_versions="--app-version ${{ steps.checks.outputs.ic_version }} --version ${{ steps.checks.outputs.chart_version }}"
helm_versions="--app-version ${{ needs.checks.outputs.ic_version }} --version ${{ needs.checks.outputs.chart_version }}"
fi
output=$(helm package ${helm_versions} kic/charts/nginx-ingress)
echo "path=$(basename -- $(echo $output | cut -d: -f2))" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 5a706b9

Please sign in to comment.