From 81a7bf3c85b53fa23812f67a20ea510e483ae140 Mon Sep 17 00:00:00 2001 From: James Ives Date: Sun, 3 Mar 2019 12:10:31 -0500 Subject: [PATCH] Update entrypoint.sh --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1f90c1f1..c7c2911c 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -20,7 +20,7 @@ cd $GITHUB_WORKSPACE && \ # Configures Git and checks out the base branch. git config --global user.email "${COMMIT_EMAIL:-gh-pages-deploy@jives.dev}" && \ -git config --global user.name "${COMMIT_NAME:-Github Pages Deploy}" && \ +git config --global user.name "${COMMIT_NAME:-Github Pages Deployer}" && \ git checkout "${BASE_BRANCH:-master}" && \ # Builds the project if applicable.