Merge pull request #11 from aslafy-z/patch-1

fix: use branch input value
This commit is contained in:
Stefan Prodan 2020-09-18 19:08:15 +03:00 committed by GitHub
commit 60182191cf
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