Allow deploy/deliver without building and pushing the image

This commit is contained in:
Samuel Sieg
2023-03-10 11:26:35 +01:00
parent 3026a92c98
commit 4bf77ccd1b
4 changed files with 42 additions and 9 deletions

View File

@@ -9,7 +9,17 @@ require "mrsk"
ActiveSupport::LogSubscriber.logger = ActiveSupport::Logger.new(STDOUT) if ENV["VERBOSE"]
# Applies to remote commands only
SSHKit.config.backend = SSHKit::Backend::Printer
# Ensure local commands use the printer backend too
module SSHKit
module DSL
def run_locally(&block)
SSHKit::Backend::Printer.new(SSHKit::Host.new(:local), &block).run
end
end
end
class ActiveSupport::TestCase
end