i am using mina for deploying my application. I specify the env(staging/production) where i want to deploy the app.
mina deploy on=staging --verbose
i have saved the app env in deploy.rb as
app_env = ENV['on'] || 'staging'
i have a rake task that takes production database backup. As of now, i run that rake task explicitly on my console as
bundle exec rake deploy:backup_prod_db --trace
I want to run that task on every production deployment. How do i do it?
The mina have special syntax for this. From mina console help page:
So from command line:
Or define task in mina deploy config file (
config/deploy.rb
):