From 8ccdb883c89c653f0beb6c17f919a1c9498ebb4f Mon Sep 17 00:00:00 2001 From: Pelayori <31128562+Pelayori@users.noreply.github.com> Date: Sun, 18 Feb 2024 02:59:23 +0100 Subject: [PATCH] add git info --- .github/workflows/deploy-pages.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 88afef16..1557621f 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -26,6 +26,11 @@ jobs: with: node-version: '14.x' + - name: Configure Git + run: | + git config user.name "GitHub Action" + git config user.email "action@github.com" + - name: Install npm dependencies in docs run: cd docs && npm install