This is an automated email from the ASF dual-hosted git repository.
wu-sheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-horizon-ui.git
The following commit(s) were added to refs/heads/main by this push:
new ce33f3e release: force English month in the vote email date
ce33f3e is described below
commit ce33f3e2cfe1a0f7f8fe057117ac05090a3e02e4
Author: Wu Sheng <[email protected]>
AuthorDate: Thu May 21 23:23:39 2026 +0800
release: force English month in the vote email date
date's %B is locale-dependent, so on a non-English OS the vote email
printed e.g. "5月" instead of "May". Pin LC_ALL=C for that date — the
email targets an English mailing list regardless of the runner's locale.
---
scripts/release.sh | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/scripts/release.sh b/scripts/release.sh
index 9454d1d..7335eee 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -440,7 +440,9 @@ note "Step 14 — Vote email"
SRC_SHA512=$(cat "${SRC_TAR}.sha512")
BIN_SHA512=$(cat "${BIN_TAR}.sha512")
-VOTE_DATE=$(date +"%B %d, %Y")
+# Force C locale so the month name is English (%B is locale-dependent) —
+# the vote email goes to an English mailing list regardless of the runner's OS
language.
+VOTE_DATE=$(LC_ALL=C date +"%B %d, %Y")
RELEASE_COMMIT=$(git -C "${CLONE_DIR}" rev-parse "${TAG}")
cat <<EOF