Use the same env vars for setup and deploy

This commit is contained in:
kleph 2022-04-06 11:19:28 +02:00 committed by simon lehericey
parent a1c299464c
commit 94fa247d8d

View file

@ -26,18 +26,18 @@ shared_dirs = [
'vendor/bundle' 'vendor/bundle'
] ]
set :domain, ENV.fetch('domain') set :domain, ENV.fetch('DOMAINS')
set :deploy_to, deploy_to set :deploy_to, deploy_to
# rubocop:disable DS/ApplicationName # rubocop:disable DS/ApplicationName
set :repository, 'https://github.com/betagouv/demarches-simplifiees.fr.git' set :repository, 'https://github.com/betagouv/demarches-simplifiees.fr.git'
# rubocop:enable DS/ApplicationName # rubocop:enable DS/ApplicationName
set :branch, ENV.fetch('branch') set :branch, ENV.fetch('BRANCH')
set :forward_agent, true set :forward_agent, true
set :user, 'ds' set :user, 'ds'
set :shared_dirs, shared_dirs set :shared_dirs, shared_dirs
set :rbenv_path, "/home/ds/.rbenv/bin/rbenv" set :rbenv_path, "/home/ds/.rbenv/bin/rbenv"
puts "Deploy to #{ENV.fetch('domain')}, branch: #{ENV.fetch('branch')}" puts "Deploy to #{ENV.fetch('DOMAINS')}, branch: #{ENV.fetch('BRANCH')}"
# This task is the environment that is loaded for most commands, such as # This task is the environment that is loaded for most commands, such as
# `mina deploy` or `mina rake`. # `mina deploy` or `mina rake`.