kou commented on issue #44574:
URL: https://github.com/apache/arrow/issues/44574#issuecomment-2445682090

   `dev/release/03-binary-submit.sh` must specify `--arrow-site`:
   
   ```diff
   diff --git a/dev/release/03-binary-submit.sh 
b/dev/release/03-binary-submit.sh
   index 0dc63aa708..9281597df5 100755
   --- a/dev/release/03-binary-submit.sh
   +++ b/dev/release/03-binary-submit.sh
   @@ -32,7 +32,8 @@ release_tag="apache-arrow-${version}-rc${rc}"
    rc_branch="release-${version_with_rc}"
    
    : ${ARROW_REPOSITORY:="apache/arrow"}
   -: ${ARROW_BRANCH:=$release_tag}
   +: ${ARROW_BRANCH:=${release_tag}}
   +: ${ARROW_SHA:=${release_tag}}
    
    # archery will submit a job with id: "${crossbow_job_prefix}-0" unless there
    # are jobs submitted with the same prefix (the integer at the end is auto
   @@ -43,6 +44,7 @@ archery crossbow submit \
        --arrow-version ${version_with_rc} \
        --arrow-remote "https://github.com/${ARROW_REPOSITORY}"; \
        --arrow-branch ${ARROW_BRANCH} \
   +    --arrow-sha ${ARROW_SHA} \
        --group packaging
    
    # archery will add a comment to the automatically generated PR to track
   ```
   
   Without this change on main:
   
   
https://github.com/ursacomputing/crossbow/actions/runs/11585712918/job/32255095398#step:2:123
   
   ```text
   /usr/bin/git log -1 --format=%H
   2df7b23af717f505c16fedbef6e4223ac163ac5a
   ```
   
   The current HEAD is used.
   
   
   With this change on main:
   
   
https://github.com/ursacomputing/crossbow/actions/runs/11585744340/job/32255177733#step:2:126
   
   ```text
   /usr/bin/git log -1 --format=%H
   9105a4109a80a1c01eabb24ee4b9f7c94ee942cb
   ```
   
   The `apache-arrow-18.0.0-rc0` was used.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to