-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…534) Fixes GH-533. This is borrowed from ADBC: https://arrow.apache.org/adbc/current/development/releasing.html
- Loading branch information
Showing
1 changed file
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,11 +120,12 @@ problem, we'll increment the RC number such as RC2, RC3 and so on. | |
|
||
We need to do the followings to publish a new release: | ||
|
||
* Publish to apache.org | ||
* Publish the source archive to apache.org | ||
* Publish the binary artifacts to repository.apache.org | ||
|
||
Run `dev/release/release.sh` on a working copy of | ||
`[email protected]:apache/arrow-java` not your fork to publish to | ||
apache.org: | ||
`[email protected]:apache/arrow-java` not your fork to publish the source | ||
archive to apache.org: | ||
|
||
```console | ||
$ GH_TOKEN=${YOUR_GITHUB_TOKEN} dev/release/release.sh ${VERSION} ${RC} | ||
|
@@ -139,6 +140,15 @@ $ GH_TOKEN=${YOUR_GITHUB_TOKEN} dev/release/release.sh 19.0.0 1 | |
Add the release to ASF's report database via [Apache Committee Report | ||
Helper](https://reporter.apache.org/addrelease.html?arrow). | ||
|
||
You need to do the followings to publish the binary artifacts to | ||
repository.apache.org: | ||
|
||
* Logon to the Apache repository: | ||
https://repository.apache.org/#stagingRepositories | ||
* Select the Arrow staging repository you created for RC: | ||
`orgapachearrow-XXXX` | ||
* Click the `release` button | ||
|
||
### Bump version for new development | ||
|
||
We should bump version in the main branch for new development after we | ||
|