update Argo CD to v0.5.0

pull/106/head
Alex Collins 2019-09-12 13:13:51 -07:00
parent 6146f2bafa
commit 65fab695fe
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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