From fa7c61d54851b49d82097391b695a2eb2f611373 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 21 Jun 2023 11:16:11 +0200 Subject: [PATCH] ci: `user.name` and `user.email` set in documentation GitHub Action --- .github/workflows/documentation.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 94614fea..ca8fa0a6 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -47,6 +47,10 @@ jobs: - name: Installing pip packages run: | pip install conan mkdocs-material mike + - name: Setup git configuration + run: | + git config --global user.name github-actions + git config --global user.email github-actions@github.com - name: Building docs run: | mike deploy --push --update-aliases `conan inspect . | sed -n -r 's/version: ([0-9]+.[0-9]+).[0-9]+/\1/p'` latest