From ede95513568bda42524aeccc3c9567e4567dd0c6 Mon Sep 17 00:00:00 2001 From: Benoit Schweblin Date: Mon, 8 Jul 2019 13:16:13 +0100 Subject: [PATCH] Attempt to fix the travis build --- build/deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/deploy.sh b/build/deploy.sh index 5e3272a9..1ab5d16e 100644 --- a/build/deploy.sh +++ b/build/deploy.sh @@ -9,9 +9,9 @@ docker tag benweet/stackedit:$TRAVIS_TAG benweet/stackedit:latest docker push benweet/stackedit:latest # Add chart to helm repository -git clone "https://benweet:$GITHUB_TOKEN@github.com/benweet/stackedit-charts.git" charts -cd charts -helm package ../dist/stackedit +git clone --branch master "https://benweet:$GITHUB_TOKEN@github.com/benweet/stackedit-charts.git" /tmp/charts +cd /tmp/charts +helm package "$TRAVIS_BUILD_DIR/dist/stackedit" helm repo index --url https://benweet.github.io/stackedit-charts/ . git config user.name "Benoit Schweblin" git config user.email "benoit.schweblin@gmail.com"