From 3061d7064e1c93424e6afd29634d3dd7cabd1809 Mon Sep 17 00:00:00 2001 From: Justin Harringa Date: Mon, 1 Mar 2021 18:59:24 -0800 Subject: [PATCH] Set git user.email/name for tagging --- .ci.deploy.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ci.deploy.sh b/.ci.deploy.sh index 9fd8678f..c72d24ff 100755 --- a/.ci.deploy.sh +++ b/.ci.deploy.sh @@ -14,6 +14,10 @@ done set -ex +# Set up git email / name for tagging +git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" +git config --local user.name "github-actions[bot]" + # Set up Maven settings and release mkdir -p "${HOME}/.m2" cp .ci.settings.xml "${HOME}"/.m2/settings.xml