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
35
35
CreateGithubRelease ::ReleaseTasks . new ( project ) . run
36
36
37
37
puts <<~MESSAGE unless project . quiet
38
+
38
39
SUCCESS: created release '#{ project . next_release_tag } '
39
40
40
41
Next steps:
41
42
42
43
* Review the release notes:
43
44
44
- #{ project . release_url }
45
+ #{ project . release_url }
45
46
46
47
* Get someone to review and approve the release pull request:
47
48
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 ) }
49
50
50
51
* Merge the pull request manually from the command line with the following
51
52
commands:
52
53
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
56
57
57
58
* Wait for the CI build to pass on the default branch and then release the
58
59
gem with the following command:
59
60
60
- rake release:rubygem_push
61
+ rake release:rubygem_push
61
62
62
63
MESSAGE
You can’t perform that action at this time.
0 commit comments