From af543ad846efd04af5cc62344caa49274a05672c Mon Sep 17 00:00:00 2001 From: Zadkiel Date: Fri, 18 Sep 2020 17:46:54 +0200 Subject: [PATCH] fix: use branch input value --- src/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entrypoint.sh b/src/entrypoint.sh index 7c7452e..98765a5 100644 --- a/src/entrypoint.sh +++ b/src/entrypoint.sh @@ -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