From 3caaff0986741ba72c67b0b291eaece163c9ed31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Krzemin=CC=81ski?= Date: Tue, 17 Sep 2024 16:42:34 +0200 Subject: [PATCH] Add missing Git config --- .github/workflows/deploy-to-stream-dist.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy-to-stream-dist.yml b/.github/workflows/deploy-to-stream-dist.yml index a00acdf9..cb7c62a6 100644 --- a/.github/workflows/deploy-to-stream-dist.yml +++ b/.github/workflows/deploy-to-stream-dist.yml @@ -45,6 +45,9 @@ jobs: # Use the release bundle as the work tree. export GIT_WORK_TREE="$SRC_DIR" + git config --global user.name "XWP Deploy Bot" + git config --global user.email "technology@xwp.co" + git add --all git commit --allow-empty --message "$COMMIT_MESSAGE"