This is an automated email from the ASF dual-hosted git repository. toulmean pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git
commit 4be12dce2f4a6fc498b0e9fe676a951f971d551e Author: Antoine Toulme <[email protected]> AuthorDate: Sun Oct 25 21:42:27 2020 -0700 Add -rc to the release candidate default tag --- RELEASE.md | 4 ++++ gradle/stage.gradle | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 0a42acc..daa85e8 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -91,6 +91,10 @@ If less than 3 votes were collected, this email is a new vote asking for more IP If a vote was called on the IPMC list, close it in the same fashion with a recap. +## Release on github + +Go to github and mark the release as released. Change the tag name to drop the `-rc` at the end. + ### Push the release to the dist final location Move the files from `https://dist.apache.org/repos/dist/dev/incubator/tuweni/${RELEASE VERSION}/` to diff --git a/gradle/stage.gradle b/gradle/stage.gradle index 3f5aab5..25cdc8d 100644 --- a/gradle/stage.gradle +++ b/gradle/stage.gradle @@ -154,7 +154,7 @@ class GitStageTask extends DefaultTask { def branch = branchOutput.toString().trim() // tag the repo project.exec { - commandLine 'git', 'tag', '-m', "Release $project.version-incubating", "v$project.version-incubating" + commandLine 'git', 'tag', '-m', "Release $project.version-incubating", "v$project.version-incubating-rc" } project.exec { commandLine 'git', 'push', 'origin', branch, '--tags' --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
