ci/cd: usar rails_master_key

This commit is contained in:
f 2020-03-02 13:40:26 -03:00
parent 9eee218eff
commit c1aae557c3
No known key found for this signature in database
GPG Key ID: 2AE5A13E321F953D
2 changed files with 1 additions and 4 deletions

View File

@ -12,6 +12,4 @@ deploy_application:
- echo -e "-----BEGIN OPENSSH PRIVATE KEY-----\n$SSH_PRIVATE_KEY\n-----END OPENSSH PRIVATE KEY-----" | ssh-add -
- mkdir -p ~/.ssh
- echo -e "Host *\nVerifyHostKeyDNS yes" > ~/.ssh/config
- echo "$RAILS_MASTER_KEY" > config/master.key
- bundle exec cap production deploy
- rm -f config/master.key

View File

@ -9,13 +9,12 @@ append :linked_dirs, 'log', 'tmp/pids', 'tmp/cache', 'tmp/sockets',
'public/system', 'data', '.bundle', 'docs'
set :bundle_flags, '--deployment'
set :bundle_jobs, 1
set :bundle_env_variables, nokogiri_use_system_libraries: 1
set :keep_releases, 2
set :ssh_options, check_host_ip: true
set :default_env,
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',
ld_preload: '/usr/lib/libjemalloc.so'