Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update release instructions #1440

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/maintainers_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,12 @@ Place `$HOME/.m2/settings.xml` with your Sonatype account information.

#### Operations

* From the upstream repository
* Preparation
* `git pull --rebase slackapi master`
* `git switch main && git pull origin main`
* Make sure there are no build failures at https://github.com/slackapi/java-slack-sdk/actions
* Set a new version
* If you don't have `gnu-sed`, run `brew install gnu-sed` first
* If you don't have `gnu-sed`, run `brew install gnu-sed` & `brew install gnupg` first
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just installing GnuPG is not enough. Before making the release, there are a few steps to complete:

* Run `scripts/set_version.sh (the version)` (e.g., `scripts/set_version.sh 1.0.0`)
* Ship the libraries
* Switch to **JDK 17** to publish all modules (on macOS, you can run `export JAVA_HOME=$(/usr/libexec/java_home -v 17)` for it)
Expand Down