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

raulcd 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 51a2148448 GH-46065: [Release] Don't use `--verify-tag` for `gh 
release upload` in `02-source.sh` (#46066)
51a2148448 is described below

commit 51a2148448fdfb32f7b82aa2cef6bb207ec68ad4
Author: Sutou Kouhei <[email protected]>
AuthorDate: Wed Apr 9 17:44:33 2025 +0900

    GH-46065: [Release] Don't use `--verify-tag` for `gh release upload` in 
`02-source.sh` (#46066)
    
    ### Rationale for this change
    
    `gh release upload` doesn't have `--verify-tag` option:
    
    ```console
    $ gh release upload --help
    Upload asset files to a GitHub Release.
    
    To define a display label for an asset, append text starting with `#` after 
the
    file name.
    
    USAGE
      gh release upload <tag> <files>... [flags]
    
    FLAGS
      --clobber   Overwrite existing assets of the same name
    
    INHERITED FLAGS
          --help                     Show help for command
      -R, --repo [HOST/]OWNER/REPO   Select another repository using the 
[HOST/]OWNER/REPO format
    
    LEARN MORE
      Use `gh <command> <subcommand> --help` for more information about a 
command.
      Read the manual at https://cli.github.com/manual
    ```
    
    ### What changes are included in this PR?
    
    Remove `--verify-tag`.
    
    ### Are these changes tested?
    
    Yes.
    
    ### Are there any user-facing changes?
    
    No.
    * GitHub Issue: #46065
    
    Authored-by: Sutou Kouhei <[email protected]>
    Signed-off-by: Raúl Cumplido <[email protected]>
---
 dev/release/02-source.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev/release/02-source.sh b/dev/release/02-source.sh
index b50aa94936..e9239bb544 100755
--- a/dev/release/02-source.sh
+++ b/dev/release/02-source.sh
@@ -95,7 +95,6 @@ if [ ${SOURCE_UPLOAD} -gt 0 ]; then
   # Upload signed tarballs to GitHub Release
   gh release upload ${tag} \
      --repo "${GITHUB_REPOSITORY}" \
-     --verify-tag \
      signed-artifacts/*
 
   # check out the arrow RC folder

Reply via email to