Skip to content

Commit

Permalink
github action version check fix
Browse files Browse the repository at this point in the history
Signed-off-by: Woojoong Kim <[email protected]>
  • Loading branch information
woojoong88 committed Jul 1, 2024
1 parent 80a5a12 commit 0b3712e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/bin/version_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ function is_unique_version() {

if [ -n "$chart_diff" ]
then
chart_ver=$(yq e .version ${chart_dir}/Chart.yaml)
# chart_ver=$(yq e .version ${chart_dir}/Chart.yaml)
chart_ver=$(cat ${chart_dir}/Chart.yaml | yq .version )

is_valid_format $chart_ver
if [ $? == 1 ]
Expand Down

0 comments on commit 0b3712e

Please sign in to comment.