Skip to content

Commit 5b72ef9

Browse files
committed
Call utils-create-release-tarball in 02-source.sh is TEST_RELEASE_SCRIPT
env variable is greater than 0
1 parent 2389ad5 commit 5b72ef9

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

dev/release/02-source.sh

+3-5
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,9 @@ tarball=apache-arrow-${version}.tar.gz
5959

6060
rm -f ${tarball}
6161

62-
if [${TEST_RELEASE_SCRIPT} -gt 0] ; then
63-
gh workflow run -f release_hash=${release_hash} tarball_name=${tarball} -> workflow id
64-
gh run watch --exit-status
65-
gh run download {id} --
66-
; else
62+
if [ ${TEST_RELEASE_SCRIPT} -gt 0 ]; then
63+
./utils-create-release-tarball ${version} ${rc}
64+
else
6765
gh release download \
6866
${tag} \
6967
--repo apache/arrow \

0 commit comments

Comments
 (0)