We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94ca5a0 commit 34e2b08Copy full SHA for 34e2b08
.github/workflows/release.yml
@@ -54,8 +54,16 @@ jobs:
54
--generate-notes \
55
--repo ${GITHUB_REPOSITORY} \
56
--title "Apache Arrow Java ${version}" \
57
- --verify-tag \
58
- dists/*
+ --verify-tag
+
59
+ # GitHub CLI does not respect their own rate limits
60
+ # https://github.com/cli/cli/issues/9586
61
+ for artifact in dists/*; do
62
+ sleep 1
63
+ gh release upload ${GITHUB_REF_NAME} \
64
+ --repo ${GITHUB_REPOSITORY} \
65
+ $artifact
66
+ done
67
- name: Checkout for publishing docs
68
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
69
with:
0 commit comments