heroku_san
heroku_san copied to clipboard
heroku:deploy:after and its dependencies not being invoked
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.