fix: unquote

This commit is contained in:
Mikeal Rogers 2019-09-09 23:20:39 +00:00
parent bff8e70f4a
commit 6d469bfc75
1 changed files with 4 additions and 4 deletions

View File

@ -16,10 +16,10 @@ sh -c "git checkout master"
remote_repo="https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
sh -c 'git config user.name "Automated Publisher"'
sh -c 'git config user.email "publish-to-github-action@users.noreply.github.com"'
sh -c 'git remote rm origin'
sh -c 'git remote add origin "${remote_repo}"'
git config user.name "Merge Release"
git config user.email "merge-release@users.noreply.github.com"
git remote rm origin
git remote add origin "${remote_repo}"
if [ "$GITHUB_REPOSITORY" = "mikeal/merge-release" ]
then