This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new f8ae352d1f GH-44441: [Release] Add missing `--repo apache/arrow` in 
`02-source.sh` (#44442)
f8ae352d1f is described below

commit f8ae352d1f855eda782090657c1b092008abe9af
Author: Sutou Kouhei <[email protected]>
AuthorDate: Thu Oct 17 06:14:41 2024 +0900

    GH-44441: [Release] Add missing `--repo apache/arrow` in `02-source.sh` 
(#44442)
    
    ### Rationale for this change
    
    We need to specify `--repo apache/arrow` to ensure using apache/arrow.
    
    ### What changes are included in this PR?
    
    Add `--repo apache/arrow`.
    
    ### Are these changes tested?
    
    Yes.
    
    ### Are there any user-facing changes?
    
    No.
    * GitHub Issue: #44441
    
    Authored-by: Sutou Kouhei <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 dev/release/02-source.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/release/02-source.sh b/dev/release/02-source.sh
index b3eae21221..cc3f5b7cc5 100755
--- a/dev/release/02-source.sh
+++ b/dev/release/02-source.sh
@@ -90,7 +90,7 @@ if [ ${SOURCE_UPLOAD} -gt 0 ]; then
   ${sha512_generate} $tarball > ${tarball}.sha512
 
   # Upload signed tarballs to GitHub Release
-  gh release upload ${tag} ${tarball}.sha256 ${tarball}.sha512
+  gh release upload --repo apache/arrow ${tag} ${tarball}.sha256 
${tarball}.sha512
 
   # check out the arrow RC folder
   svn co --depth=empty https://dist.apache.org/repos/dist/dev/arrow tmp

Reply via email to