From 8cfcc7e693032906b77339e5f70bd3f7301e0784 Mon Sep 17 00:00:00 2001 From: voodoorai2000 Date: Fri, 21 Sep 2018 15:32:41 +0200 Subject: [PATCH] Use master as the default deploy branch It's a good practice to use a stable branch for deployments, but not all forks have this branch configured Using master as the default branch for now --- config/deploy/production.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/deploy/production.rb b/config/deploy/production.rb index 90eb501c2..4af02ce50 100644 --- a/config/deploy/production.rb +++ b/config/deploy/production.rb @@ -1,7 +1,7 @@ set :deploy_to, deploysecret(:deploy_to) set :server_name, deploysecret(:server_name) set :db_server, deploysecret(:db_server) -set :branch, :stable +set :branch, :master set :ssh_options, port: deploysecret(:ssh_port) set :stage, :production set :rails_env, :production