You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by wa...@apache.org on 2023/01/19 03:13:48 UTC

[incubator-devlake-helm-chart] branch main updated: Update lint-chart-versions.yml

This is an automated email from the ASF dual-hosted git repository.

warren pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-helm-chart.git


The following commit(s) were added to refs/heads/main by this push:
     new f2b7de5  Update lint-chart-versions.yml
f2b7de5 is described below

commit f2b7de50ff991f561178824847133fd888bcc989
Author: Warren Chen <yi...@merico.dev>
AuthorDate: Thu Jan 19 11:13:44 2023 +0800

    Update lint-chart-versions.yml
---
 .github/workflows/lint-chart-versions.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/lint-chart-versions.yml b/.github/workflows/lint-chart-versions.yml
index 522a8a7..dbe8484 100644
--- a/.github/workflows/lint-chart-versions.yml
+++ b/.github/workflows/lint-chart-versions.yml
@@ -51,7 +51,7 @@ jobs:
           base_version_patch=$(echo $base_chart_version_text | sed 's/v//;' | cut -d. -f 3)
           base_version=$(expr ${base_version_major} \* 1000000 + ${base_version_minor} \* 1000 + $base_version_patch)
           chart_version=$(expr ${chart_version_major} \* 1000000 + ${chart_version_minor} \* 1000 + $chart_version_patch)
-          if [[ $chart_version > $base_version ]] ; then
+          if [[ $chart_version >= $base_version ]] ; then
             echo chart version from $base_version to $chart_version
             echo chart version from $base_version to $chart_version :green_heart: >> $GITHUB_STEP_SUMMARY
           else