From 9296e2b47d0cf14bd9fa0f03c9d7655dfec189a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20B=C4=83ncioiu?= Date: Fri, 29 Mar 2024 18:07:14 +0200 Subject: [PATCH] Fix git config. --- .github/workflows/update-docs.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/update-docs.yml b/.github/workflows/update-docs.yml index cf57cb97..79c78666 100644 --- a/.github/workflows/update-docs.yml +++ b/.github/workflows/update-docs.yml @@ -44,5 +44,9 @@ jobs: DOCS_OUTPUT_FOLDER=$DOCS_OUTPUT_FOLDER npm run api:document cd ${GITHUB_WORKSPACE}/docs + + # See: https://github.com/actions/checkout/blob/main/README.md#push-a-commit-using-the-built-in-token + git config user.name github-actions + git config user.email github-actions@github.com git commit -am "Re-generated docs." git push