我正在尝试将 Jekyll 生成的“_site”文件夹部署到 Capistrano 的“发布”中。我已经确认 Capistrano 可以工作,但它目前正在我的 GitHub 托管的 repo 上部署所有内容。我想要的可能吗?
我的deploy.rb
文件目前看起来像这样......
set :application, "kaidez.com"
set :repository, "git@github.com:kaidez/kaidez.com.git"
default_run_options[:pty] = true
set :scm, "git"
set :user, "myUsername"
set :scm_passphrase, "myPassword"
set :ssh_options, { :forward_agent => true }
set :branch, "master"
set :deploy_to, "/my/remote/branch/"
set :deploy_via, :remote_cache
set :use_sudo, false
role :web, "kaidez.com"
role :app, "kaidez.com"