如果Capistrano的最后一次发布出现问题,我正在寻找一种简单的方法来回到以前的版本
有没有像“cap goback”这样的命令来撤消最后一次部署?(因此将当前符号链接更新到它的旧位置)
这是内置的还是我只需要自己做一个任务?
这是我的食谱:
set :user, "root"
set :use_sudo, false
set :domain, "www.domain.info"
set :deploy_to, "/home/beta2"
set :current_dir, "public_html"
set :scm, "git"
set :repository, "git@github.com:user/ac.git"
set :deploy_via, :remote_cache
set :scm_verbose, true
set :git_enable_submodules, 1
role :web, domain
role :app, domain
task :link_shared_directories do
run "ln -s #{shared_path}/photos #{release_path}/photos"
end
after "deploy:update_code", :link_shared_directories