Skip to content

Commit 1b7d56c

Browse files
committed
Add bundle check to release task
1 parent 769b4d3 commit 1b7d56c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tasks/release.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@
103103
end
104104
end
105105

106+
task :bundle do
107+
sh 'bundle check'
108+
end
109+
106110
task :commit do
107111
File.open('pkg/commit_message.txt', 'w') do |f|
108112
f.puts "# Preparing for #{version} release\n"
@@ -119,5 +123,5 @@
119123
sh "git push --tags"
120124
end
121125

122-
task :release => %w(ensure_clean_state build commit tag push)
126+
task :release => %w(ensure_clean_state build bundle commit tag push)
123127
end

0 commit comments

Comments
 (0)