add dependencies

This commit is contained in:
Paul Carlton 2022-10-04 14:22:53 +01:00
parent aa53926042
commit 84568715a3

View file

@ -16,7 +16,6 @@
set -o errexit set -o errexit
set -o pipefail set -o pipefail
set -x
GITHUB_TOKEN=$1 GITHUB_TOKEN=$1
CHARTS_DIR=$2 CHARTS_DIR=$2
@ -162,7 +161,6 @@ upload() {
tmpDir=$(mktemp -d) tmpDir=$(mktemp -d)
pushd $tmpDir >& /dev/null pushd $tmpDir >& /dev/null
echo "REPO_URL=$REPO_URL"
git clone ${REPO_URL} git clone ${REPO_URL}
cd ${REPOSITORY} cd ${REPOSITORY}
git config user.name "${COMMIT_USERNAME}" git config user.name "${COMMIT_USERNAME}"
@ -189,7 +187,7 @@ upload() {
git add ${INDEX_DIR}/index.yaml git add ${INDEX_DIR}/index.yaml
git commit -m "Publish $charts" git commit -m "Publish $charts"
git push ${BRANCH} git push origin ${BRANCH}
popd >& /dev/null popd >& /dev/null
rm -rf $tmpDir rm -rf $tmpDir