You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The deploy and deploy:force tasks manually trigger the after_deploy task, but they do so using Rake::Task#execute, which will not invoke task dependencies. That means heroku:deploy:after and any of its dependencies will not be executed. Should be as simple as calling Rake::Task#invoke instead.
The text was updated successfully, but these errors were encountered:
The
deploy
anddeploy:force
tasks manually trigger theafter_deploy
task, but they do so usingRake::Task#execute
, which will not invoke task dependencies. That meansheroku:deploy:after
and any of its dependencies will not be executed. Should be as simple as callingRake::Task#invoke
instead.The text was updated successfully, but these errors were encountered: