From 2411fcdaf588695f571dd84874ba24a79b4b5615 Mon Sep 17 00:00:00 2001 From: Andrew Chen Wang Date: Wed, 17 Jun 2020 17:25:52 +0000 Subject: [PATCH] Removed username from credentials --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index bdcddf8..945c046 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -37,7 +37,7 @@ git init # Setup credentials git config user.name $GH_NAME git config user.email $GH_MAIL -credentials=${GH_PAT:-$GH_NAME:$GITHUB_TOKEN} +credentials=${GH_PAT:-$GITHUB_TOKEN} git pull https://$credentials@github.com/$REPO.wiki.git cd ..