From c2fe27bf50411ccd19aac2e1e9037f796fee7a15 Mon Sep 17 00:00:00 2001 From: Rhys van der Waerden Date: Sun, 24 Nov 2024 13:29:07 +1100 Subject: [PATCH] Set git config globally --- .github/workflows/generate-lua-library.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate-lua-library.yml b/.github/workflows/generate-lua-library.yml index 49d636bfc1..584ed7e036 100644 --- a/.github/workflows/generate-lua-library.yml +++ b/.github/workflows/generate-lua-library.yml @@ -13,8 +13,8 @@ jobs: steps: - name: Configure git run: | - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git config user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" - name: Checkout Lua CPP files uses: actions/checkout@v4