add dependencies
This commit is contained in:
parent
aa53926042
commit
84568715a3
1 changed files with 1 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue