fix: use branch input value
This commit is contained in:
parent
eeda28f933
commit
af543ad846
1 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,7 @@ upload() {
|
||||||
git config user.name "${GITHUB_ACTOR}"
|
git config user.name "${GITHUB_ACTOR}"
|
||||||
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
||||||
git remote set-url origin ${REPO_URL}
|
git remote set-url origin ${REPO_URL}
|
||||||
git checkout gh-pages
|
git checkout ${BRANCH}
|
||||||
|
|
||||||
charts=$(cd ${CHARTS_TMP_DIR} && ls *.tgz | xargs)
|
charts=$(cd ${CHARTS_TMP_DIR} && ls *.tgz | xargs)
|
||||||
|
|
||||||
|
@ -142,7 +142,7 @@ upload() {
|
||||||
|
|
||||||
git add ${TARGET_DIR}
|
git add ${TARGET_DIR}
|
||||||
git commit -m "Publish $charts"
|
git commit -m "Publish $charts"
|
||||||
git push origin gh-pages
|
git push origin ${BRANCH}
|
||||||
|
|
||||||
popd >& /dev/null
|
popd >& /dev/null
|
||||||
rm -rf $tmpDir
|
rm -rf $tmpDir
|
||||||
|
|
Loading…
Add table
Reference in a new issue