This is an automated email from the ASF dual-hosted git repository.
milenkovicm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-ballista.git
The following commit(s) were added to refs/heads/main by this push:
new 40af576e7 chore: add confirmation before tarball is released (#1445)
40af576e7 is described below
commit 40af576e7254453c8c2c76f94392d0a56a2613d4
Author: Marko Milenković <[email protected]>
AuthorDate: Sun Feb 8 13:04:26 2026 +0000
chore: add confirmation before tarball is released (#1445)
---
dev/release/release-tarball.sh | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/dev/release/release-tarball.sh b/dev/release/release-tarball.sh
index c51d3cb2b..42ec880b4 100755
--- a/dev/release/release-tarball.sh
+++ b/dev/release/release-tarball.sh
@@ -43,6 +43,13 @@ fi
version=$1
rc=$2
+read -r -p "Proceed to release tarball for ${version}-rc${rc}? [y/N]: " answer
+answer=${answer:-no}
+if [ "${answer}" != "y" ]; then
+ echo "Cancelled tarball release!"
+ exit 1
+fi
+
tmp_dir=tmp-apache-datafusion-ballista-dist
echo "Recreate temporary directory: ${tmp_dir}"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]