ci/cd: usar rails_master_key
This commit is contained in:
parent
9eee218eff
commit
c1aae557c3
2 changed files with 1 additions and 4 deletions
|
@ -12,6 +12,4 @@ deploy_application:
|
||||||
- echo -e "-----BEGIN OPENSSH PRIVATE KEY-----\n$SSH_PRIVATE_KEY\n-----END OPENSSH PRIVATE KEY-----" | ssh-add -
|
- echo -e "-----BEGIN OPENSSH PRIVATE KEY-----\n$SSH_PRIVATE_KEY\n-----END OPENSSH PRIVATE KEY-----" | ssh-add -
|
||||||
- mkdir -p ~/.ssh
|
- mkdir -p ~/.ssh
|
||||||
- echo -e "Host *\nVerifyHostKeyDNS yes" > ~/.ssh/config
|
- echo -e "Host *\nVerifyHostKeyDNS yes" > ~/.ssh/config
|
||||||
- echo "$RAILS_MASTER_KEY" > config/master.key
|
|
||||||
- bundle exec cap production deploy
|
- bundle exec cap production deploy
|
||||||
- rm -f config/master.key
|
|
||||||
|
|
|
@ -9,13 +9,12 @@ append :linked_dirs, 'log', 'tmp/pids', 'tmp/cache', 'tmp/sockets',
|
||||||
'public/system', 'data', '.bundle', 'docs'
|
'public/system', 'data', '.bundle', 'docs'
|
||||||
set :bundle_flags, '--deployment'
|
set :bundle_flags, '--deployment'
|
||||||
set :bundle_jobs, 1
|
set :bundle_jobs, 1
|
||||||
set :bundle_env_variables, nokogiri_use_system_libraries: 1
|
|
||||||
set :keep_releases, 2
|
set :keep_releases, 2
|
||||||
set :ssh_options, check_host_ip: true
|
set :ssh_options, check_host_ip: true
|
||||||
|
|
||||||
set :default_env,
|
set :default_env,
|
||||||
rails_env: 'production',
|
rails_env: 'production',
|
||||||
rails_master_key: File.read('config/master.key'),
|
rails_master_key: ENV.fetch('RAILS_MASTER_KEY') { File.read('config/master.key') },
|
||||||
web_concurrency: '1',
|
web_concurrency: '1',
|
||||||
ld_preload: '/usr/lib/libjemalloc.so'
|
ld_preload: '/usr/lib/libjemalloc.so'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue