We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e40e7e3 commit 8a28d82Copy full SHA for 8a28d82
helpers/release.rb
@@ -57,11 +57,15 @@
57
checklist.url_exist? "https://github.com/DannyBen/bashly/releases/tag/v#{version}"
58
end
59
60
- checklist.run "local retype" do
+ checklist.run "local retype is on master and clean" do
61
+ `git -C /vagrant/sites/bashly status`.match /On branch master.*nothing to commit/m
62
+ end
63
+
64
+ checklist.run "local retype version" do
65
YAML.load_file('/vagrant/sites/bashly/retype.yml')['branding']['label'] == "v#{version}"
66
67
- checklist.run "remote retype" do
68
+ checklist.run "remote retype version" do
69
`curl -Ss https://raw.githubusercontent.com/DannyBen/bashly-book/master/retype.yml`.include? "label: v#{version}"
70
71
0 commit comments