Skip to content

Commit 0ed4549

Browse files
authored
Format the output so next steps are easier to read (#58)
1 parent 5442745 commit 0ed4549

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

exe/create-github-release

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,28 +35,29 @@ puts unless options.quiet
3535
CreateGithubRelease::ReleaseTasks.new(project).run
3636

3737
puts <<~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
6263
MESSAGE

0 commit comments

Comments
 (0)