mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 09:12:51 +01:00
34 lines
940 B
PHP
34 lines
940 B
PHP
<?php
|
|
/* (c) Anton Medvedev <anton@medv.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Deployer;
|
|
|
|
task('deploy:info', function () {
|
|
$what = '';
|
|
$branch = get('branch');
|
|
|
|
if (!empty($branch)) {
|
|
$what = "<fg=magenta>$branch</fg=magenta>";
|
|
}
|
|
|
|
if (input()->hasOption('tag') && !empty(input()->getOption('tag'))) {
|
|
$tag = input()->getOption('tag');
|
|
$what = "tag <fg=magenta>$tag</fg=magenta>";
|
|
} elseif (input()->hasOption('revision') && !empty(input()->getOption('revision'))) {
|
|
$revision = input()->getOption('revision');
|
|
$what = "revision <fg=magenta>$revision</fg=magenta>";
|
|
}
|
|
|
|
if (empty($what)) {
|
|
$what = "<fg=magenta>HEAD</fg=magenta>";
|
|
}
|
|
|
|
writeln("✈︎ Deploying $what on <fg=cyan>{{hostname}}</fg=cyan>");
|
|
})
|
|
->shallow()
|
|
->setPrivate();
|