1
我有一個任務驗證即將部署的構建的完整性。如何從任務中停止Capistrano部署
我想暫停/失敗部署,以防萬一它被破壞。
task :test_build do
if something
puts "Problem with build"
#prevent deploy to continue further
end
end
after('deploy:update_code', 'test_build')
注:項目採用railsless-deploy
'raise'應該爲此工作。 – engineersmnky