From 0b15b96ab0f413e2d75f769dc301a10b3a56c5fc Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Fri, 24 May 2024 18:20:45 +0200 Subject: [PATCH] Fix deploy step. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af89223..a74e841 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,10 +43,10 @@ jobs: # Only run on main branch push (e.g. pull request merge). if: github.event_name == 'push' run: | - git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" + git config --global user.name "Deployer" git config --global user.email "username@users.noreply.github.com" git add --force book/book - git commit -m "${{ env.CI_COMMIT_MESSAGE }}" + git commit -m "Render book" git push --set-upstream --force-with-lease origin deploy formatter: -- 2.45.2