Debug failed Workflow run

This commit is contained in:
--global 2020-11-25 20:26:32 +01:00
parent 8f9132651a
commit 8edcd8b718
1 changed files with 7 additions and 4 deletions

View File

@ -62,10 +62,13 @@ _setup_local_repository() {
cd "${FAKE_LOCAL_REPOSITORY}"; cd "${FAKE_LOCAL_REPOSITORY}";
# Configure Git # Configure Git
if [[ -z $(git config user.name) ]]; then # if [[ -z $(git config user.name) ]]; then
git config --global user.name "Test Suite" # git config --global user.name "Test Suite"
git config --global user.email "test@github.com" # git config --global user.email "test@github.com"
fi # fi
git config --global user.name "Test Suite"
git config --global user.email "test@github.com"
} }
# Run the main code related to this GitHub Action # Run the main code related to this GitHub Action