diff --git a/charts/argo-cd/Chart.yaml b/charts/argo-cd/Chart.yaml
index 86bd0b34..dc78ba75 100644
--- a/charts/argo-cd/Chart.yaml
+++ b/charts/argo-cd/Chart.yaml
@@ -2,4 +2,4 @@ apiVersion: v1
 appVersion: "1.2.0"
 description: A Helm chart for Argo-CD
 name: argo-cd
-version: 0.4.0
+version: 0.5.0
diff --git a/scripts/publish.sh b/scripts/publish.sh
index bac055d2..1829aae7 100755
--- a/scripts/publish.sh
+++ b/scripts/publish.sh
@@ -1,6 +1,7 @@
 #!/bin/bash
 
 SRCROOT="$(cd "$(dirname "$0")/.." && pwd)"
+GIT_PUSH=${GIT_PUSH:-true}
 
 rm -rf $SRCROOT/output && git clone -b gh-pages git@github.com:argoproj/argo-helm.git $SRCROOT/output
 
@@ -17,4 +18,6 @@ cd $SRCROOT/output && git status
 if [ "$GIT_PUSH" == "true" ]
 then
     cd $SRCROOT/output && git add . && git commit -m "Publish charts" && git push git@github.com:argoproj/argo-helm.git gh-pages
+    helm repo update
+    helm search argo-cd
 fi