From c46e07d8bddf3f93e591274113bc2e787fbd446e Mon Sep 17 00:00:00 2001 From: Yuvraj <10830562+evalsocket@users.noreply.github.com> Date: Thu, 28 May 2020 13:02:48 -0700 Subject: [PATCH] commented out helm version check for first time --- .github/workflows/helm-release.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/helm-release.yaml b/.github/workflows/helm-release.yaml index 49412ce2af..ec4e91829d 100644 --- a/.github/workflows/helm-release.yaml +++ b/.github/workflows/helm-release.yaml @@ -23,15 +23,15 @@ jobs: chmod 700 get_helm.sh ./get_helm.sh helm init --client-only - - name: Check Chart Version - run: | - helm repo add evalsocket ${{ env.HELM_CHART_URL }} - helm search nirmata/kyverno --version `cat charts/kyverno/Chart.yaml | grep '^version: [[:alnum:]]' | awk '{print $2}'` > HELM_CHART_STATUS.txt - HELM_CHART_STATUS=`cat HELM_CHART_STATUS.txt` - if [ "${HELM_CHART_STATUS}" != 'No results found' ]; then - echo 'Version already exist, impossible to continue...' - exit 1 - fi +# - name: Check Chart Version +# run: | +# helm repo add evalsocket ${{ env.HELM_CHART_URL }} +# helm search nirmata/kyverno --version `cat charts/kyverno/Chart.yaml | grep '^version: [[:alnum:]]' | awk '{print $2}'` > HELM_CHART_STATUS.txt +# HELM_CHART_STATUS=`cat HELM_CHART_STATUS.txt` +# if [ "${HELM_CHART_STATUS}" != 'No results found' ]; then +# echo 'Version already exist, impossible to continue...' +# exit 1 +# fi - name: Check sintax run: helm lint charts/oldmonk/ - name: Create package