aboutsummaryrefslogtreecommitdiffstats
path: root/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'tasks')
-rw-r--r--tasks/release.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/tasks/release.rb b/tasks/release.rb
index c7704aa865..25ba91cb49 100644
--- a/tasks/release.rb
+++ b/tasks/release.rb
@@ -48,6 +48,7 @@ directory "pkg"
task gem => %w(update_versions pkg) do
cmd = ""
cmd << "cd #{framework} && " unless framework == "rails"
+ cmd << "bundle exec rake assets:compile && " if framework == "actioncable"
cmd << "gem build #{gemspec} && mv #{framework}-#{version}.gem #{root}/pkg/"
sh cmd
end