From cab84c4461e3834a2abba94541c7456045757696 Mon Sep 17 00:00:00 2001 From: nanake Date: Tue, 12 Dec 2023 14:45:08 +0900 Subject: [PATCH] Elevate gitconfig to system level for some reason, on GHA (only?), git unable to read ~/.gitconfig so, whenever commit will get following error ``` git am Committer identity unknown *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity. Omit --global to set the identity only in this repository. fatal: unable to auto-detect email address (got 'unknown@bcf9ba01cdb2.(none)') ``` This CL elevates gitconfig to system level to mitigate the issue. Signed-off-by: nanake --- images/base-win32/Dockerfile | 6 +++--- images/base-win64/Dockerfile | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/images/base-win32/Dockerfile b/images/base-win32/Dockerfile index df38c5ec..28d943a2 100644 --- a/images/base-win32/Dockerfile +++ b/images/base-win32/Dockerfile @@ -33,9 +33,9 @@ RUN <