From f389c0f2df5392f49990a131c1a7abc948183030 Mon Sep 17 00:00:00 2001 From: krasjet Date: Tue, 1 Mar 2022 04:06:24 +0000 Subject: [PATCH] fix git config --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 94444ff..d13dcbf 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,6 +26,6 @@ jobs: cd site git init git add . - git -c "user.name=$GH_NAME" -c "user.email=$GH_EMAIL" commit -m "Auto Deployment" + git -c user.name=$GH_NAME -c user.email=$GH_EMAIL commit -m "Auto Deployment" git push -f -q "https://learnopengl-bot:$API_TOKEN@github.com/LearnOpenGL-CN/learnopengl-cn.github.io" master