From ad5652d37be01a9b922ef6b18b00bf32035e7ea6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=81=B0=E7=99=BD=E8=8D=89?= <41500176+HBcao233@users.noreply.github.com> Date: Mon, 8 Jan 2024 22:45:10 +0800 Subject: [PATCH] Update deploy.yml --- .github/workflows/deploy.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a404850b..5fb54c8f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -34,12 +34,11 @@ jobs: # 执行部署 - name: Deploy to Pages run: | - ls .vitepress cd .vitepress/dist git init - git config user.name "gelxgx" + git config user.name "HBcao233" git config user.email "${{ secrets.GIT_EMAIL }}" git add -A git commit -m 'deploy' - git push -f https://gelxgx:${{ secrets.ACCESS_TOKEN }}@github.com/gelxgx/blog.git master:gh-pages + git push -f https://HBcao233:${{ secrets.ACCESS_TOKEN }}@github.com/HBcao233/HGModWiki.git master:gh-pages cd -