mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 09:12:51 +01:00
11 lines
142 B
PHP
11 lines
142 B
PHP
|
<?php
|
||
|
|
||
|
namespace Deployer;
|
||
|
|
||
|
localhost('prod');
|
||
|
localhost('beta');
|
||
|
|
||
|
task('test_once', function () {
|
||
|
writeln('SHOULD BE ONCE');
|
||
|
})->once();
|