File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -35,28 +35,29 @@ puts unless options.quiet
3535CreateGithubRelease ::ReleaseTasks . new ( project ) . run
3636
3737puts <<~MESSAGE unless project . quiet
38+
3839 SUCCESS: created release '#{ project . next_release_tag } '
3940
4041 Next steps:
4142
4243 * Review the release notes:
4344
44- #{ project . release_url }
45+ #{ project . release_url }
4546
4647 * Get someone to review and approve the release pull request:
4748
48- #{ wait_for_non_nil ( -> { project . release_pr_url } , max_attempts : 10 , sleep_time : 0.5 ) }
49+ #{ wait_for_non_nil ( -> { project . release_pr_url } , max_attempts : 10 , sleep_time : 0.5 ) }
4950
5051 * Merge the pull request manually from the command line with the following
5152 commands:
5253
53- git checkout #{ project . default_branch }
54- git merge --ff-only #{ project . release_branch }
55- git push
54+ git checkout #{ project . default_branch }
55+ git merge --ff-only #{ project . release_branch }
56+ git push
5657
5758 * Wait for the CI build to pass on the default branch and then release the
5859 gem with the following command:
5960
60- rake release:rubygem_push
61+ rake release:rubygem_push
6162
6263MESSAGE
You can’t perform that action at this time.
0 commit comments