submodule

This commit is contained in:
Luna 2021-05-06 17:58:19 +00:00
parent ce4b28781a
commit e8e3bdb5c2
Signed by: luna
GPG Key ID: 48ABA804580B9BA8
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
namespace :git do
desc 'Copy repo to releases'
task create_release: :'git:update' do
on roles(:all) do
with fetch(:git_environmental_variables) do
within repo_path do
execute :git, :clone, '-b', fetch(:branch), '--recursive', '.', release_path
end
end
end
end
end