mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
c80046a77b
Deployment with Capistrano was failing due to a mismatch between the loaded version of Capistrano and the one specified in the deployment configuration. Bumping the version in config/deploy.rb fixes this issue.
15 lines
427 B
Ruby
15 lines
427 B
Ruby
# frozen_string_literal: true
|
|
|
|
lock '3.8.2'
|
|
|
|
set :repo_url, ENV.fetch('REPO', 'https://github.com/tootsuite/mastodon.git')
|
|
set :branch, ENV.fetch('BRANCH', 'master')
|
|
|
|
set :application, 'mastodon'
|
|
set :rbenv_type, :user
|
|
set :rbenv_ruby, File.read('.ruby-version').strip
|
|
set :migration_role, :app
|
|
|
|
append :linked_files, '.env.production', 'public/robots.txt'
|
|
append :linked_dirs, 'vendor/bundle', 'node_modules', 'public/system'
|