We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Multi stage is easy as define one task:
For example:
deploy.application = "my_app" deploy.deploy_to = "/apps/my_app" deploy.repository = "ssh://[email protected]/my_repo.git" deploy.host = "my_production_machine" task :staging do deploy.host = “my_staging_machine” or deploy.deploy_to = “/apps/my_app_staging” end
task :staging do deploy.host = “my_staging_machine”
And then run:
$ rake staging deploy