Created
October 15, 2013 18:31
-
-
Save procload/6996376 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Version 1 | |
namespace :deploy do | |
desc "Build and deploy website to staging" | |
task :staging => [:build, :heroku_staging] do | |
end | |
desc "Build and deploy website to staging" | |
task :production => [:build, :heroku_production] do | |
end | |
end | |
# Version 2 | |
namespace :staging do | |
desc "Build and deploy website to staging" | |
task :deploy => [:build, :heroku_staging] do | |
end | |
end | |
namespace :production do | |
desc "Build and deploy website to staging" | |
task :deploy => [:build, :heroku_production] do | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment