summaryrefslogtreecommitdiffhomepage
path: root/scripts/release.sh
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2019-09-09 13:21:41 -0700
committergVisor bot <gvisor-bot@google.com>2019-09-09 13:21:41 -0700
commit6af9a9850aff75e15c6f9ab577af5b818531d6ee (patch)
treed9f41fba55d4b9bc67c7f8ada20c3a8a073edd77 /scripts/release.sh
parenta8943325db43d04be8a10157f6d3f3180e5170a5 (diff)
parent1a0a940587e4db8923ca81b78d7bba395eb56ce1 (diff)
Merge pull request #824 from amscanne:fix_build2
PiperOrigin-RevId: 268062329
Diffstat (limited to 'scripts/release.sh')
-rwxr-xr-xscripts/release.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/release.sh b/scripts/release.sh
index 422319500..b936bcc77 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -26,9 +26,13 @@ if ! [[ -v KOKORO_RELEASE_TAG ]]; then
exit 1
fi
+# Unless an explicit releaser is provided, use the bot e-mail.
+declare -r KOKORO_RELEASE_AUTHOR=${KOKORO_RELEASE_AUTHOR:-gvisor-bot}
+declare -r EMAIL=${EMAIL:-${KOKORO_RELEASE_AUTHOR}@google.com}
+
# Ensure we have an appropriate configuration for the tag.
git config --get user.name || git config user.name "gVisor-bot"
-git config --get user.email || git config user.email "gvisor-bot@google.com"
+git config --get user.email || git config user.email "${EMAIL}"
# Run the release tool, which pushes to the origin repository.
tools/tag_release.sh "${KOKORO_RELEASE_COMMIT}" "${KOKORO_RELEASE_TAG}"