-----> Fetching new git commits
$ (cd "/home/travelninja/app/scm" && git fetch "git@github.com:gotripl/app.git" "master:master" --force)
-----> Using git branch 'master'
$ git clone "/home/travelninja/app/scm" . --recursive --branch "master"
fatal: destination path '.' already exists and is not an empty directory.
! ERROR: Deploy failed.
Connection to staging.tripl.de closed.
Interestingly it used to work, but now no longer works.
require 'mina/rails'
require 'mina/git'
require 'mina/rbenv' # for rbenv support. (https://rbenv.org)
# require 'mina/rvm' # for rvm support. (https://rvm.io)
require 'mina_sidekiq/tasks'
# Basic settings:
# domain - The hostname to SSH to.
# deploy_to - Path to deploy into.
# repository - Git repo to clone from. (needed by mina/git)
# branch - Branch name to deploy. (needed by mina/git)
set :domain, 'staging.tripl.de'
set :deploy_to, '/home/travelninja/app'
set :repository, 'git@github.com:gotripl/app.git'
set :branch, 'master'
set :sidekiq, 'sidekiq'
# set :sidekiq, -> { "#{fetch(:bundle_path)} #{fetch(:bundle_options)} exec sidekiq" }
# set :sidekiq, -> { "#{fetch(:bundle_prefix)} sidekiq" }
# Optional settings:
set :user, 'travelninja' # Username in the server to SSH to.
# set :port, '30000' # SSH port number.
# set :forward_agent, true # SSH forward_agent.
# They will be linked in the 'deploy:link_shared_paths' step.
# set :shared_dirs, fetch(:shared_dirs, []).push('config')
set :shared_files, fetch(:shared_files, []).push('.rbenv-vars')
# This task is the environment that is loaded all remote run commands, such as
# `mina deploy` or `mina rake`.
task :environment do
# If you're using rbenv, use this to load the rbenv environment.
# Be sure to commit your .ruby-version or .rbenv-version to your repository.
invoke :'rbenv:load'
# For those using RVM, use this to load an RVM version@gemset.
# invoke :'rvm:use', 'ruby-1.9.3-p125@default'
end
# Put any custom commands you need to run at setup
# All paths in `shared_dirs` and `shared_paths` will be created on their own.
task :setup do
# command %{rbenv install 2.3.0}
command %(mkdir -p "#{fetch(:deploy_to)}/shared/pids/")
command %(mkdir -p "#{fetch(:deploy_to)}/shared/log/")
end
desc "Deploys the current version to the server."
task :deploy do
# uncomment this line to make sure you pushed your local branch to the remote origin
# invoke :'git:ensure_pushed'
deploy do
# Put things that will set up an empty directory into a fully set-up
# instance of your project.
invoke :'sidekiq:quiet'
invoke :'git:clone'
invoke :'deploy:link_shared_paths'
invoke :'bundle:install'
invoke :'rails:db_migrate'
invoke :'rails:assets_precompile'
invoke :'deploy:cleanup'
on :launch do
in_path(fetch(:current_path)) do
command %{mkdir -p tmp/}
command %{touch tmp/restart.txt}
end
invoke :'sidekiq:restart'
end
end
# you can use `run :local` to run tasks on local machine before of after the deploy scripts
# run :local { say 'done' }
end
# For help in making your deploy script, see the Mina documentation:
#
# - https://github.com/mina-deploy/mina/docs
I am having the same issue as the guys in this discussion: #190
Interestingly it used to work, but now no longer works.
Here is my full
deploy.rb: