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 769b4d3 commit 1b7d56cCopy full SHA for 1b7d56c
tasks/release.rb
@@ -103,6 +103,10 @@
103
end
104
105
106
+ task :bundle do
107
+ sh 'bundle check'
108
+ end
109
+
110
task :commit do
111
File.open('pkg/commit_message.txt', 'w') do |f|
112
f.puts "# Preparing for #{version} release\n"
@@ -119,5 +123,5 @@
119
123
sh "git push --tags"
120
124
121
125
122
- task :release => %w(ensure_clean_state build commit tag push)
126
+ task :release => %w(ensure_clean_state build bundle commit tag push)
127
0 commit comments