fix: use branch input value

This commit is contained in:
Zadkiel 2020-09-18 17:46:54 +02:00 committed by GitHub
parent eeda28f933
commit af543ad846
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -125,7 +125,7 @@ upload() {
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git remote set-url origin ${REPO_URL}
git checkout gh-pages
git checkout ${BRANCH}
charts=$(cd ${CHARTS_TMP_DIR} && ls *.tgz | xargs)
@ -142,7 +142,7 @@ upload() {
git add ${TARGET_DIR}
git commit -m "Publish $charts"
git push origin gh-pages
git push origin ${BRANCH}
popd >& /dev/null
rm -rf $tmpDir