Skip to content

Commit

Permalink
correct build script
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin O'Donnell <kevin@blockchaintp.com>
  • Loading branch information
scealiontach committed Feb 4, 2020
1 parent 10dfc97 commit c6c07e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/build_all.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

TARGET_S3=s3://scealiontach/charts
TARGET_S3=s3://btp-charts-stable/charts
KEY=${KEY:-admin@blockchaintp.com}
KEY_RING=${KEY_RING:-~/.gnupg/secring.gpg}
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
Expand All @@ -19,10 +19,10 @@ done

mkdir -p dist/repo
pushd $src_dir/dist/repo
aws s3 sync . s3://scealiontach/charts
aws s3 sync . $TARGET_S3
cp $src_dir/dist/local/* .
helm repo index ./
aws s3 sync . s3://scealiontach/charts
aws s3 sync . $TARGET_S3
popd

popd

0 comments on commit c6c07e6

Please sign in to comment.